summaryrefslogtreecommitdiffstats
path: root/pkg/utils
diff options
context:
space:
mode:
authorTommy Nguyen <remyabel@gmail.com>2018-08-19 08:48:03 -0400
committerTommy Nguyen <remyabel@gmail.com>2018-08-19 08:48:03 -0400
commit766197de9dd19fe743b21efe751c52db3e99aa3e (patch)
tree78ce80010057872348788760201612d553dea025 /pkg/utils
parentd2bdac29aa7038177ab26f91c06d9f01703d97c5 (diff)
NormalizeLinefeeds removes rather than converts Window/Mac style lf's
Diffstat (limited to 'pkg/utils')
-rw-r--r--pkg/utils/utils.go5
-rw-r--r--pkg/utils/utils_test.go20
2 files changed, 13 insertions, 12 deletions
diff --git a/pkg/utils/utils.go b/pkg/utils/utils.go
index 37e76d78a..f56ea8884 100644
--- a/pkg/utils/utils.go
+++ b/pkg/utils/utils.go
@@ -64,9 +64,10 @@ func TrimTrailingNewline(str string) string {
return str
}
+// NormalizeLinefeeds - Removes all Windows and Mac style line feeds
func NormalizeLinefeeds(str string) string {
- str = strings.Replace(str, "\r\n", "\n", -1)
- str = strings.Replace(str, "\r", "\n", -1)
+ str = strings.Replace(str, "\r\n", "", -1)
+ str = strings.Replace(str, "\r", "", -1)
return str
}
diff --git a/pkg/utils/utils_test.go b/pkg/utils/utils_test.go
index 3a9f6817b..22a9c82dc 100644
--- a/pkg/utils/utils_test.go
+++ b/pkg/utils/utils_test.go
@@ -3,32 +3,32 @@ package utils
import "testing"
var testCases = []struct {
- Input []byte
+ Input []byte
Expected []byte
}{
{
// \r\n
- Input: []byte{97, 115, 100, 102, 13, 10},
- Expected: []byte{97, 115, 100, 102, 10},
+ Input: []byte{97, 115, 100, 102, 13, 10},
+ Expected: []byte{97, 115, 100, 102},
},
{
// \r
- Input: []byte{97, 115, 100, 102, 13},
- Expected: []byte{97, 115, 100, 102, 10},
+ Input: []byte{97, 115, 100, 102, 13},
+ Expected: []byte{97, 115, 100, 102},
},
{
// \n
- Input: []byte{97, 115, 100, 102, 10},
+ Input: []byte{97, 115, 100, 102, 10},
Expected: []byte{97, 115, 100, 102, 10},
},
-
}
func TestNormalizeLinefeeds(t *testing.T) {
-
for _, tc := range testCases {
- if NormalizeLinefeeds(string(tc.Input)) != string(tc.Expected) {
- t.Error("Error")
+ input := NormalizeLinefeeds(string(tc.Input))
+ expected := string(tc.Expected)
+ if input != expected {
+ t.Error("Expected " + expected + ", got " + input)
}
}
}