| package testing |
| |
| import ( |
| "fmt" |
| "net/http" |
| "testing" |
| |
| "github.com/gophercloud/gophercloud" |
| "github.com/gophercloud/gophercloud/openstack/identity/v3/tokens" |
| "github.com/gophercloud/gophercloud/testhelper" |
| ) |
| |
| // HandleCreateTokenWithTrustID verifies that providing certain AuthOptions and Scope results in an expected JSON structure. |
| func HandleCreateTokenWithTrustID(t *testing.T, options tokens.AuthOptionsBuilder, requestJSON string) { |
| testhelper.SetupHTTP() |
| defer testhelper.TeardownHTTP() |
| |
| client := gophercloud.ServiceClient{ |
| ProviderClient: &gophercloud.ProviderClient{}, |
| Endpoint: testhelper.Endpoint(), |
| } |
| |
| testhelper.Mux.HandleFunc("/auth/tokens", func(w http.ResponseWriter, r *http.Request) { |
| testhelper.TestMethod(t, r, "POST") |
| testhelper.TestHeader(t, r, "Content-Type", "application/json") |
| testhelper.TestHeader(t, r, "Accept", "application/json") |
| testhelper.TestJSONRequest(t, r, requestJSON) |
| |
| w.WriteHeader(http.StatusCreated) |
| fmt.Fprintf(w, `{ |
| "token": { |
| "expires_at": "2014-10-02T13:45:00.000000Z" |
| } |
| }`) |
| }) |
| |
| _, err := tokens.Create(&client, options).Extract() |
| if err != nil { |
| t.Errorf("Create returned an error: %v", err) |
| } |
| } |