Add initial tests for urlencoded (#5178)

This commit is contained in:
Carlos Tadeu Panato Junior
2017-01-25 15:00:06 +01:00
committed by Christopher Speller
parent a930eef71d
commit 8ed665cb76

35
utils/urlencode_test.go Normal file
View File

@@ -0,0 +1,35 @@
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package utils
import (
"testing"
)
func TestUrlEncode(t *testing.T) {
toEncode := "testing 1 2 3"
encoded := UrlEncode(toEncode)
if encoded != "testing%201%202%203" {
t.Log(encoded)
t.Fatal("should be equal")
}
toEncode = "testing123"
encoded = UrlEncode(toEncode)
if encoded != "testing123" {
t.Log(encoded)
t.Fatal("should be equal")
}
toEncode = "testing$#~123"
encoded = UrlEncode(toEncode)
if encoded != "testing%24%23~123" {
t.Log(encoded)
t.Fatal("should be equal")
}
}