blob: 983992e2b9b27b1b889f20db83b9bb838f467088 [file] [log] [blame]
package networks
import (
"testing"
"github.com/rackspace/gophercloud"
th "github.com/rackspace/gophercloud/testhelper"
)
const endpoint = "http://localhost:57909/"
func endpointClient() *gophercloud.ServiceClient {
return &gophercloud.ServiceClient{Endpoint: endpoint}
}
func TestGetURL(t *testing.T) {
actual := getURL(endpointClient(), "foo")
expected := endpoint + "os-networksv2/foo"
th.AssertEquals(t, expected, actual)
}
func TestCreateURL(t *testing.T) {
actual := createURL(endpointClient())
expected := endpoint + "os-networksv2"
th.AssertEquals(t, expected, actual)
}
func TestListURL(t *testing.T) {
actual := createURL(endpointClient())
expected := endpoint + "os-networksv2"
th.AssertEquals(t, expected, actual)
}
func TestDeleteURL(t *testing.T) {
actual := deleteURL(endpointClient(), "foo")
expected := endpoint + "os-networksv2/foo"
th.AssertEquals(t, expected, actual)
}