Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding debug tests #43

Merged
merged 1 commit into from
Dec 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions cmd/app.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package cmd

import (
"bytes"
"fmt"
"io"
"os"
Expand Down Expand Up @@ -117,12 +118,15 @@ func outputHostsfile(hf *hostsfile.Hosts, all bool) {
}
}

lineOutput := fmt.Sprintf("%s\n", line.Raw)
lineOutput := line.Raw
if line.IsMalformed() {
lineOutput = fmt.Sprintf("%s # <<< Malformed!\n", lineOutput)
logrus.Debugf("malformed line: %s", line.Err)
if !line.HasComment() {
lineOutput = fmt.Sprintf("%s #", lineOutput)
}
lineOutput = fmt.Sprintf("%s <<< Malformed!", lineOutput)
}

logrus.Infof(lineOutput)
logrus.Info(lineOutput + "\n")
}
}

Expand Down Expand Up @@ -166,13 +170,15 @@ func debugFooter(c *cli.Context) error {
{"malformed", fmt.Sprintf("%d", malformed)},
}

table := tablewriter.NewWriter(os.Stdout)
buf := &bytes.Buffer{}
table := tablewriter.NewWriter(buf)
table.SetHeader([]string{"Type", "Count"})

for _, v := range data {
table.Append(v)
}
table.Render()
logrus.Info(buf)

return nil
}
Expand Down
16 changes: 8 additions & 8 deletions cmd/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
easy "github.com/t-tomalak/logrus-easy-formatter"
)

func TestDebug(t *testing.T) {
func TestDebugFlag(t *testing.T) {
args, out := setup("--debug", "version")
Version("test-version", "test-commit", "test-date")
assert.Nil(t, App.Run(args))
Expand Down Expand Up @@ -47,10 +47,10 @@ func read(t *testing.T, name, file string) func() {
}
}

//func write(t *testing.T, name, file string) func() {
// err := os.WriteFile(name, []byte(file), 0770)
// assert.Nil(t, err)
// return func() {
// assert.Nil(t, os.Remove(name))
// }
//}
func write(t *testing.T, name, file string) func() {
err := os.WriteFile(name, []byte(file), 0770)
assert.Nil(t, err)
return func() {
assert.Nil(t, os.Remove(name))
}
}
98 changes: 98 additions & 0 deletions cmd/debug_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
package cmd

import (
"runtime"
"testing"

"github.com/stretchr/testify/assert"
)

func TestDebug(t *testing.T) {

// app run will return an error if the hostsfile does not exist
t.Run("hostsfile that doesn't exist", func(t *testing.T) {
args, _ := setup("-f", "no-existy", "debug")
err := App.Run(args)
assert.NotEmpty(t, err)
if runtime.GOOS == "windows" {
assert.Equal(t, "open no-existy: The system cannot find the file specified.", err.Error())
} else {
assert.Equal(t, "open no-existy: no such file or directory", err.Error())
}
})

tests := map[string]struct {
input string
expected string
}{
"hostsfile has only 1 line": {
input: `127.0.0.1 localhost
`,
expected: `hosts file path: test-debug
+-----------+-------+
| TYPE | COUNT |
+-----------+-------+
| lines | 1 |
| entries | 1 |
| comments | 0 |
| empty | 0 |
| malformed | 0 |
+-----------+-------+
`,
},
"hotsfile only has 1 malformed line": {
input: `127.x.x.x localhost
`,
expected: `hosts file path: test-debug
+-----------+-------+
| TYPE | COUNT |
+-----------+-------+
| lines | 1 |
| entries | 1 |
| comments | 0 |
| empty | 0 |
| malformed | 1 |
+-----------+-------+
`,
},
"hotsfile only has 1 empty line": {
input: `
`,
expected: `hosts file path: test-debug
+-----------+-------+
| TYPE | COUNT |
+-----------+-------+
| lines | 1 |
| entries | 0 |
| comments | 0 |
| empty | 1 |
| malformed | 0 |
+-----------+-------+
`,
},
"hotsfile only has 1 comment line": {
input: `# comment
`,
expected: `hosts file path: test-debug
+-----------+-------+
| TYPE | COUNT |
+-----------+-------+
| lines | 1 |
| entries | 0 |
| comments | 1 |
| empty | 0 |
| malformed | 0 |
+-----------+-------+
`,
},
}

for name, test := range tests {
t.Run(name, func(t *testing.T) {
defer read(t, "test-debug", test.input)()
args, out := setup("-f", "test-debug", "debug")
assert.Nil(t, App.Run(args))
assert.Equal(t, test.expected, out.String())
})
}
}
68 changes: 53 additions & 15 deletions cmd/list_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,60 @@ import (
)

func TestList(t *testing.T) {
args, _ := setup("-f", "no-existy", "list")
err := App.Run(args)
assert.NotEmpty(t, err)
if runtime.GOOS == "windows" {
assert.Equal(t, "open no-existy: The system cannot find the file specified.", err.Error())
} else {
assert.Equal(t, "open no-existy: no such file or directory", err.Error())
}
// app run will return an error if the hostsfile does not exist
t.Run("hostsfile that doesn't exist", func(t *testing.T) {
args, _ := setup("-f", "no-existy", "list")
err := App.Run(args)
assert.NotEmpty(t, err)
if runtime.GOOS == "windows" {
assert.Equal(t, "open no-existy: The system cannot find the file specified.", err.Error())
} else {
assert.Equal(t, "open no-existy: no such file or directory", err.Error())
}
})

// this is really a noop but future proofs us a bit
t.Run("hostsfile that is write accessible", func(t *testing.T) {
defer write(t, "test-list", "127.0.0.1 localhost")()
args, out := setup("-f", "test-list", "list")
assert.Empty(t, App.Run(args))
assert.Equal(t, "127.0.0.1 localhost"+"\n", out.String())
})

file := "list"
content := "127.0.0.1 localhost"
// test reading the system hostsfile
t.Run("read the system hostsfile", func(t *testing.T) {
args, out := setup("list")
assert.Empty(t, App.Run(args))
assert.NotEmpty(t, out)
})

cleanup := read(t, file, content)
defer cleanup()
tests := map[string]struct {
input string
expected string
}{
"hostsfile that is readonly": {
input: `127.0.0.1 localhost
`,
expected: `127.0.0.1 localhost
`,
},
"malformed comment added to row": {
input: `127.x.x.x localhost
127.x.x.x localhost # comment
`,
expected: `127.x.x.x localhost # <<< Malformed!
127.x.x.x localhost # comment <<< Malformed!
`,
},
}

for name, test := range tests {
t.Run(name, func(t *testing.T) {
defer read(t, "list-test", test.input)()
args, out := setup("-f", "list-test", "list")
assert.Empty(t, App.Run(args))
assert.Equal(t, test.expected, out.String())
})
}

args, out := setup("-f", file, "list")
assert.Empty(t, App.Run(args))
assert.Equal(t, content+"\n", out.String())
}