mirror of
https://gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud
synced 2024-11-06 09:16:25 +00:00
40 lines
1016 B
Go
40 lines
1016 B
Go
package grequests
|
|
|
|
import "testing"
|
|
|
|
func TestAddQueryStringParams(t *testing.T) {
|
|
userURL, err := buildURLParams("https://www.google.com/", map[string]string{"1": "2", "3": "4"})
|
|
|
|
if err != nil {
|
|
t.Error("URL Parse Error: ", err)
|
|
}
|
|
|
|
if userURL != "https://www.google.com/?1=2&3=4" {
|
|
t.Error("URL params not properly built", userURL)
|
|
}
|
|
}
|
|
|
|
func TestSortAddQueryStringParams(t *testing.T) {
|
|
userURL, err := buildURLParams("https://www.google.com/", map[string]string{"3": "4", "1": "2"})
|
|
|
|
if err != nil {
|
|
t.Error("URL Parse Error: ", err)
|
|
}
|
|
|
|
if userURL != "https://www.google.com/?1=2&3=4" {
|
|
t.Error("URL params not properly built and sorted", userURL)
|
|
}
|
|
}
|
|
|
|
func TestAddQueryStringParamsExistingParam(t *testing.T) {
|
|
userURL, err := buildURLParams("https://www.google.com/?5=6", map[string]string{"3": "4", "1": "2"})
|
|
|
|
if err != nil {
|
|
t.Error("URL Parse Error: ", err)
|
|
}
|
|
|
|
if userURL != "https://www.google.com/?1=2&3=4&5=6" {
|
|
t.Error("URL params not properly built and sorted", userURL)
|
|
}
|
|
}
|