mirror of
https://blitiri.com.ar/repos/chasquid
synced 2026-01-09 17:55:57 +00:00
Minor style and simplification cleanups
This patch does various minor style and simplification cleanups, fixing things detected by tools such as go vet, gofmt -s, and golint. There are no functional changes, this change is purely cosmetic, but will enable us to run those tools more regularly now that their output is clean.
This commit is contained in:
@@ -25,7 +25,7 @@ var (
|
||||
)
|
||||
|
||||
var (
|
||||
timeoutError = fmt.Errorf("Operation timed out")
|
||||
errTimeout = fmt.Errorf("Operation timed out")
|
||||
)
|
||||
|
||||
// Procmail delivers local mail via procmail.
|
||||
@@ -79,7 +79,7 @@ func (p *Procmail) Deliver(from string, to string, data []byte) error {
|
||||
timedOut := !timer.Stop()
|
||||
|
||||
if timedOut {
|
||||
return tr.Error(timeoutError)
|
||||
return tr.Error(errTimeout)
|
||||
}
|
||||
if err != nil {
|
||||
return tr.Errorf("Procmail failed: %v - %q", err, output.String())
|
||||
|
||||
@@ -39,7 +39,7 @@ func TestProcmailTimeout(t *testing.T) {
|
||||
p := Procmail{}
|
||||
|
||||
err := p.Deliver("from", "to@local", []byte("data"))
|
||||
if err != timeoutError {
|
||||
if err != errTimeout {
|
||||
t.Errorf("Unexpected error: %v", err)
|
||||
}
|
||||
|
||||
|
||||
@@ -86,19 +86,19 @@ func TestSMTPErrors(t *testing.T) {
|
||||
|
||||
responses := []map[string]string{
|
||||
// First test: hang response, should fail due to timeout.
|
||||
map[string]string{
|
||||
{
|
||||
"_welcome": "220 no newline",
|
||||
},
|
||||
|
||||
// MAIL FROM not allowed.
|
||||
map[string]string{
|
||||
{
|
||||
"_welcome": "220 mail from not allowed\n",
|
||||
"EHLO localhost": "250 ehlo ok\n",
|
||||
"MAIL FROM:<me@me>": "501 mail error\n",
|
||||
},
|
||||
|
||||
// RCPT TO not allowed.
|
||||
map[string]string{
|
||||
{
|
||||
"_welcome": "220 rcpt to not allowed\n",
|
||||
"EHLO localhost": "250 ehlo ok\n",
|
||||
"MAIL FROM:<me@me>": "250 mail ok\n",
|
||||
@@ -106,7 +106,7 @@ func TestSMTPErrors(t *testing.T) {
|
||||
},
|
||||
|
||||
// DATA error.
|
||||
map[string]string{
|
||||
{
|
||||
"_welcome": "220 data error\n",
|
||||
"EHLO localhost": "250 ehlo ok\n",
|
||||
"MAIL FROM:<me@me>": "250 mail ok\n",
|
||||
@@ -115,7 +115,7 @@ func TestSMTPErrors(t *testing.T) {
|
||||
},
|
||||
|
||||
// DATA response error.
|
||||
map[string]string{
|
||||
{
|
||||
"_welcome": "220 data response error\n",
|
||||
"EHLO localhost": "250 ehlo ok\n",
|
||||
"MAIL FROM:<me@me>": "250 mail ok\n",
|
||||
|
||||
@@ -26,7 +26,7 @@ const (
|
||||
)
|
||||
|
||||
var (
|
||||
queueFullError = fmt.Errorf("Queue size too big, try again later")
|
||||
errQueueFull = fmt.Errorf("Queue size too big, try again later")
|
||||
)
|
||||
|
||||
// Channel used to get random IDs for items in the queue.
|
||||
@@ -90,7 +90,7 @@ func (q *Queue) Len() int {
|
||||
// Put an envelope in the queue.
|
||||
func (q *Queue) Put(from string, to []string, data []byte) (string, error) {
|
||||
if q.Len() >= maxQueueSize {
|
||||
return "", queueFullError
|
||||
return "", errQueueFull
|
||||
}
|
||||
|
||||
item := &Item{
|
||||
|
||||
@@ -117,7 +117,7 @@ func TestFullQueue(t *testing.T) {
|
||||
|
||||
// This one should fail due to the queue being too big.
|
||||
id, err := q.Put("from", []string{"to"}, []byte("data"))
|
||||
if err != queueFullError {
|
||||
if err != errQueueFull {
|
||||
t.Errorf("Not failed as expected: %v - %v", id, err)
|
||||
}
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ import (
|
||||
|
||||
var (
|
||||
// Error to return when $LISTEN_PID does not refer to us.
|
||||
PIDMismatch = errors.New("$LISTEN_PID != our PID")
|
||||
ErrPIDMismatch = errors.New("$LISTEN_PID != our PID")
|
||||
|
||||
// First FD for listeners.
|
||||
// It's 3 by definition, but using a variable simplifies testing.
|
||||
@@ -36,7 +36,7 @@ func Listeners() ([]net.Listener, error) {
|
||||
return nil, fmt.Errorf(
|
||||
"error converting $LISTEN_PID=%q: %v", pidStr, err)
|
||||
} else if pid != os.Getpid() {
|
||||
return nil, PIDMismatch
|
||||
return nil, ErrPIDMismatch
|
||||
}
|
||||
|
||||
nfds, err := strconv.Atoi(os.Getenv("LISTEN_FDS"))
|
||||
|
||||
@@ -53,7 +53,7 @@ func TestWrongPID(t *testing.T) {
|
||||
}
|
||||
|
||||
setenv(strconv.Itoa(pid), "4")
|
||||
if _, err := Listeners(); err != PIDMismatch {
|
||||
if _, err := Listeners(); err != ErrPIDMismatch {
|
||||
t.Errorf("Did not fail with PID mismatch: %v", err)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -75,8 +75,8 @@ type DB struct {
|
||||
}
|
||||
|
||||
var (
|
||||
MissingHeaderErr = errors.New("missing '#chasquid-userdb-v1' header")
|
||||
InvalidUsernameErr = errors.New("username contains invalid characters")
|
||||
ErrMissingHeader = errors.New("missing '#chasquid-userdb-v1' header")
|
||||
ErrInvalidUsername = errors.New("username contains invalid characters")
|
||||
)
|
||||
|
||||
func New(fname string) *DB {
|
||||
@@ -114,7 +114,7 @@ func Load(fname string) (*DB, []error, error) {
|
||||
scanner := bufio.NewScanner(f)
|
||||
scanner.Scan()
|
||||
if scanner.Text() != "#chasquid-userdb-v1" {
|
||||
return nil, nil, MissingHeaderErr
|
||||
return nil, nil, ErrMissingHeader
|
||||
}
|
||||
|
||||
var warnings []error
|
||||
@@ -194,7 +194,7 @@ func (db *DB) Write() error {
|
||||
// TODO: Sort the usernames, just to be friendlier.
|
||||
for _, user := range db.users {
|
||||
if strings.ContainsAny(user.name, illegalUsernameChars) {
|
||||
return InvalidUsernameErr
|
||||
return ErrInvalidUsername
|
||||
}
|
||||
fmt.Fprintf(buf, "%s %s %s\n",
|
||||
user.name, user.scheme.String(),
|
||||
@@ -247,7 +247,7 @@ const illegalUsernameChars = "\t\n\v\f\r \xa0\x85"
|
||||
// Add a user to the database. If the user is already present, override it.
|
||||
func (db *DB) AddUser(name, plainPassword string) error {
|
||||
if !ValidUsername(name) {
|
||||
return InvalidUsernameErr
|
||||
return ErrInvalidUsername
|
||||
}
|
||||
|
||||
s := scryptScheme{
|
||||
|
||||
@@ -86,7 +86,7 @@ func TestLoad(t *testing.T) {
|
||||
{"header \\r\\n", "#chasquid-userdb-v1\r\n", false, nil, false},
|
||||
{"header EOF", "#chasquid-userdb-v1", false, nil, false},
|
||||
{"missing header", "this is not the header",
|
||||
true, MissingHeaderErr, false},
|
||||
true, ErrMissingHeader, false},
|
||||
{"invalid user", "#chasquid-userdb-v1\nnam\xa0e PLAIN pass\n",
|
||||
false, nil, true},
|
||||
{"too few fields", "#chasquid-userdb-v1\nfield1 field2\n",
|
||||
@@ -131,7 +131,7 @@ func testOneLoad(t *testing.T, desc, content string, fatal bool, fatalErr error,
|
||||
}
|
||||
|
||||
if db != nil && !dbEquals(db, emptyDB) {
|
||||
t.Errorf("case %q: DB not empty: %#v", db)
|
||||
t.Errorf("case %q: DB not empty: %#v", desc, db)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user