summaryrefslogtreecommitdiffstats
path: root/pkg/utils
diff options
context:
space:
mode:
authorremyabel <41764622+remyabel@users.noreply.github.com>2018-08-19 23:29:47 -0400
committerGitHub <noreply@github.com>2018-08-19 23:29:47 -0400
commit5c65066cbb27eac0e9cc2dd19354d6889c052406 (patch)
tree4beca6c465c61d81255604f88e38f59e71e3d2bc /pkg/utils
parente8b12a086c94f29b8fdcd1b2197b332834e13ca6 (diff)
parent64cf8f5b107a310e6729b68ba8d7638effd3966d (diff)
Merge branch 'master' into 157_remove_bom
Diffstat (limited to 'pkg/utils')
-rw-r--r--pkg/utils/utils_test.go83
1 files changed, 81 insertions, 2 deletions
diff --git a/pkg/utils/utils_test.go b/pkg/utils/utils_test.go
index 22a9c82dc..ffc753fd4 100644
--- a/pkg/utils/utils_test.go
+++ b/pkg/utils/utils_test.go
@@ -1,6 +1,86 @@
package utils
-import "testing"
+import (
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+)
+
+func TestSplitLines(t *testing.T) {
+ type scenario struct {
+ multilineString string
+ expected []string
+ }
+
+ scenarios := []scenario{
+ {
+ "",
+ []string{},
+ },
+ {
+ "\n",
+ []string{},
+ },
+ {
+ "hello world !\nhello universe !\n",
+ []string{
+ "hello world !",
+ "hello universe !",
+ },
+ },
+ }
+
+ for _, s := range scenarios {
+ assert.EqualValues(t, s.expected, SplitLines(s.multilineString))
+ }
+}
+
+func TestWithPadding(t *testing.T) {
+ type scenario struct {
+ str string
+ padding int
+ expected string
+ }
+
+ scenarios := []scenario{
+ {
+ "hello world !",
+ 1,
+ "hello world !",
+ },
+ {
+ "hello world !",
+ 14,
+ "hello world ! ",
+ },
+ }
+
+ for _, s := range scenarios {
+ assert.EqualValues(t, s.expected, WithPadding(s.str, s.padding))
+ }
+}
+
+func TestTrimTrailingNewline(t *testing.T) {
+ type scenario struct {
+ str string
+ expected string
+ }
+
+ scenarios := []scenario{
+ {
+ "hello world !\n",
+ "hello world !",
+ },
+ {
+ "hello world !",
+ "hello world !",
+ },
+ }
+
+ for _, s := range scenarios {
+ assert.EqualValues(t, s.expected, TrimTrailingNewline(s.str))
+ }
+}
var testCases = []struct {
Input []byte
@@ -30,5 +110,4 @@ func TestNormalizeLinefeeds(t *testing.T) {
if input != expected {
t.Error("Expected " + expected + ", got " + input)
}
- }
}