Files
mattermost/utils/urlencode_test.go
2017-01-25 09:00:06 -05:00

36 lines
615 B
Go

// 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")
}
}