blob: feacf7f69b5c7ece24d56e548bd2fbbb4e8cafae [file] [log] [blame]
package snapshots
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 TestCreateURL(t *testing.T) {
actual := createURL(endpointClient())
expected := endpoint + "snapshots"
th.AssertEquals(t, expected, actual)
}
func TestDeleteURL(t *testing.T) {
actual := deleteURL(endpointClient(), "foo")
expected := endpoint + "snapshots/foo"
th.AssertEquals(t, expected, actual)
}
func TestGetURL(t *testing.T) {
actual := getURL(endpointClient(), "foo")
expected := endpoint + "snapshots/foo"
th.AssertEquals(t, expected, actual)
}
func TestListURL(t *testing.T) {
actual := listURL(endpointClient())
expected := endpoint + "snapshots"
th.AssertEquals(t, expected, actual)
}
func TestMetadataURL(t *testing.T) {
actual := metadataURL(endpointClient(), "foo")
expected := endpoint + "snapshots/foo/metadata"
th.AssertEquals(t, expected, actual)
}
func TestUpdateMetadataURL(t *testing.T) {
actual := updateMetadataURL(endpointClient(), "foo")
expected := endpoint + "snapshots/foo/metadata"
th.AssertEquals(t, expected, actual)
}