| package snapshots |
| |
| import ( |
| "testing" |
| |
| "github.com/gophercloud/gophercloud" |
| th "github.com/gophercloud/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) |
| } |