-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
664403f
commit d773bbc
Showing
2 changed files
with
188 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,188 @@ | ||
package lib | ||
|
||
import ( | ||
"net/http" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func Test_BlockStorage_GetBlockStorages_Error(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusNotAcceptable, `{error}`) | ||
defer server.Close() | ||
|
||
storages, err := client.GetBlockStorages() | ||
assert.Nil(t, storages) | ||
if assert.NotNil(t, err) { | ||
assert.Equal(t, `{error}`, err.Error()) | ||
} | ||
} | ||
|
||
func Test_BlockStorage_GetBlockStorages_NoKeys(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusOK, `[]`) | ||
defer server.Close() | ||
|
||
storages, err := client.GetBlockStorages() | ||
if err != nil { | ||
t.Error(err) | ||
} | ||
assert.Nil(t, storages) | ||
} | ||
|
||
func Test_BlockStorage_GetBlockStorages_OK(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusOK, `[ | ||
{"SUBID":"1","label":"alpha","attached_to_SUBID":123,"size_gb":10,"status":"pending","date_created":"2011-11-11 11:11:11"}, | ||
{"SUBID":"2","label":"beta","DCID":33,"size_gb":100,"cost_per_month":10,"date_created":"2014-12-31 13:34:56"} | ||
]`) | ||
defer server.Close() | ||
|
||
storages, err := client.GetBlockStorages() | ||
if err != nil { | ||
t.Error(err) | ||
} | ||
if assert.NotNil(t, storages) { | ||
assert.Equal(t, 2, len(storages)) | ||
// storage could be in random order | ||
for _, storage := range storages { | ||
switch storage.ID { | ||
case "1": | ||
assert.Equal(t, "alpha", storage.Name) | ||
assert.Equal(t, "2011-11-11 11:11:11", storage.Created) | ||
assert.Equal(t, "123", storage.AttachedTo) | ||
assert.Equal(t, 10, storage.SizeGB) | ||
assert.Equal(t, "pending", storage.Status) | ||
case "2": | ||
assert.Equal(t, "beta", storage.Name) | ||
assert.Equal(t, "2014-12-31 13:34:56", storage.Created) | ||
assert.Equal(t, 33, storage.RegionID) | ||
assert.Equal(t, 100, storage.SizeGB) | ||
assert.Equal(t, "10", storage.Cost) | ||
default: | ||
t.Error("Unknown SUBID") | ||
} | ||
} | ||
} | ||
} | ||
|
||
func Test_BlockStorage_CreateBlockStorage_Error(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusNotAcceptable, `{error}`) | ||
defer server.Close() | ||
|
||
storage, err := client.CreateBlockStorage("delta", 33, 150) | ||
assert.Equal(t, BlockStorage{}, storage) | ||
if assert.NotNil(t, err) { | ||
assert.Equal(t, `{error}`, err.Error()) | ||
} | ||
} | ||
|
||
func Test_BlockStorage_CreateBlockStorage_NoKey(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusOK, `[]`) | ||
defer server.Close() | ||
|
||
storage, err := client.CreateBlockStorage("delta", 33, 150) | ||
if err != nil { | ||
t.Error(err) | ||
} | ||
assert.Equal(t, "", storage.ID) | ||
} | ||
|
||
func Test_BlockStorage_CreateBlockStorage_OK(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusOK, `{"SUBID":"5671234"}`) | ||
defer server.Close() | ||
|
||
storage, err := client.CreateBlockStorage("delta", 33, 150) | ||
if err != nil { | ||
t.Error(err) | ||
} | ||
if assert.NotNil(t, storage) { | ||
assert.Equal(t, "5671234", storage.ID) | ||
assert.Equal(t, "delta", storage.Name) | ||
assert.Equal(t, 33, storage.RegionID) | ||
assert.Equal(t, 150, storage.SizeGB) | ||
} | ||
} | ||
|
||
func Test_BlockStorage_AttachBlockStorage_Error(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusNotAcceptable, `{error}`) | ||
defer server.Close() | ||
|
||
err := client.AttachBlockStorage("555", "666") | ||
if assert.NotNil(t, err) { | ||
assert.Equal(t, `{error}`, err.Error()) | ||
} | ||
} | ||
|
||
func Test_BlockStorage_ResizeBlockStorage_Error(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusNotAcceptable, `{error}`) | ||
defer server.Close() | ||
|
||
err := client.ResizeBlockStorage("123", 150) | ||
if assert.NotNil(t, err) { | ||
assert.Equal(t, `{error}`, err.Error()) | ||
} | ||
} | ||
|
||
func Test_BlockStorage_ResizeBlockStorage_OK(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusOK, `{no-response?!}`) | ||
defer server.Close() | ||
|
||
assert.Nil(t, client.ResizeBlockStorage("123", 150)) | ||
} | ||
|
||
func Test_BlockStorage_LabelBlockStorage_Error(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusNotAcceptable, `{error}`) | ||
defer server.Close() | ||
|
||
err := client.LabelBlockStorage("123", "test") | ||
if assert.NotNil(t, err) { | ||
assert.Equal(t, `{error}`, err.Error()) | ||
} | ||
} | ||
|
||
func Test_BlockStorage_LabelBlockStorage_OK(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusOK, `{no-response?!}`) | ||
defer server.Close() | ||
|
||
assert.Nil(t, client.LabelBlockStorage("123", "test")) | ||
} | ||
|
||
func Test_BlockStorage_AttachBlockStorage_OK(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusOK, `{no-response?!}`) | ||
defer server.Close() | ||
|
||
assert.Nil(t, client.AttachBlockStorage("555", "666")) | ||
} | ||
|
||
func Test_BlockStorage_DetachBlockStorage_Error(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusNotAcceptable, `{error}`) | ||
defer server.Close() | ||
|
||
err := client.DetachBlockStorage("id-1") | ||
if assert.NotNil(t, err) { | ||
assert.Equal(t, `{error}`, err.Error()) | ||
} | ||
} | ||
|
||
func Test_BlockStorage_DetachBlockStorage_OK(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusOK, `{no-response?!}`) | ||
defer server.Close() | ||
|
||
assert.Nil(t, client.DetachBlockStorage("id-1")) | ||
} | ||
|
||
func Test_BlockStorage_DeleteBlockStorage_Error(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusNotAcceptable, `{error}`) | ||
defer server.Close() | ||
|
||
err := client.DeleteBlockStorage("id-1") | ||
if assert.NotNil(t, err) { | ||
assert.Equal(t, `{error}`, err.Error()) | ||
} | ||
} | ||
|
||
func Test_BlockStorage_DeleteBlockStorage_OK(t *testing.T) { | ||
server, client := getTestServerAndClient(http.StatusOK, `{no-response?!}`) | ||
defer server.Close() | ||
|
||
assert.Nil(t, client.DeleteBlockStorage("id-1")) | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.