summaryrefslogtreecommitdiffstats
path: root/utils/markdown/lines_test.go
diff options
context:
space:
mode:
authorChris <ccbrown112@gmail.com>2018-01-22 15:32:50 -0600
committerGitHub <noreply@github.com>2018-01-22 15:32:50 -0600
commit599991ea731953f772824ce3ed1e591246aa004f (patch)
treefca0f556f12e56bdcefa74ac6794dec64e04e3fc /utils/markdown/lines_test.go
parenta8445775351c32f8a12081f60bda2099571b2758 (diff)
downloadchat-599991ea731953f772824ce3ed1e591246aa004f.tar.gz
chat-599991ea731953f772824ce3ed1e591246aa004f.tar.bz2
chat-599991ea731953f772824ce3ed1e591246aa004f.zip
PLT-3383: image proxy support (#7991)
* image proxy support * go vet fix, remove mistakenly added coverage file * fix test compile error * add validation to config settings and documentation to model functions * add message_source field to post
Diffstat (limited to 'utils/markdown/lines_test.go')
-rw-r--r--utils/markdown/lines_test.go36
1 files changed, 36 insertions, 0 deletions
diff --git a/utils/markdown/lines_test.go b/utils/markdown/lines_test.go
new file mode 100644
index 000000000..78603c5ea
--- /dev/null
+++ b/utils/markdown/lines_test.go
@@ -0,0 +1,36 @@
+// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package markdown
+
+import (
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+)
+
+func TestParseLines(t *testing.T) {
+ assert.Equal(t, []Line{
+ {Range{0, 4}}, {Range{4, 7}},
+ }, ParseLines("foo\nbar"))
+
+ assert.Equal(t, []Line{
+ {Range{0, 5}}, {Range{5, 8}},
+ }, ParseLines("foo\r\nbar"))
+
+ assert.Equal(t, []Line{
+ {Range{0, 4}}, {Range{4, 6}}, {Range{6, 9}},
+ }, ParseLines("foo\r\r\nbar"))
+
+ assert.Equal(t, []Line{
+ {Range{0, 4}},
+ }, ParseLines("foo\n"))
+
+ assert.Equal(t, []Line{
+ {Range{0, 4}},
+ }, ParseLines("foo\r"))
+
+ assert.Equal(t, []Line{
+ {Range{0, 5}},
+ }, ParseLines("foo\r\n"))
+}