public async Task GetComputeFlavorsIncludesAuthHeader() { var client = new ComputeServiceRestClient(GetValidContext(), this.ServiceLocator); await client.GetFlavors(); Assert.IsTrue(this.simulator.Headers.ContainsKey("X-Auth-Token")); Assert.AreEqual(this.authId, this.simulator.Headers["X-Auth-Token"]); }
public async Task CanGetFlavors() { this.simulator.Flavors.Add(new ComputeFlavor("1", "tiny", "4", "2", "10", new Uri("http://testcomputeendpoint.com/v2/1234567890/flavors/1"), new Uri("http://testcomputeendpoint.com/1234567890/flavors/1"), new Dictionary<string, string>())); var client = new ComputeServiceRestClient(GetValidContext(), this.ServiceLocator); var resp = await client.GetFlavors(); Assert.AreEqual(HttpStatusCode.OK, resp.StatusCode); var respContent = TestHelper.GetStringFromStream(resp.Content); Assert.IsTrue(respContent.Length > 0); }
public async Task GetComputeFlavorsFormsCorrectUrlAndMethod() { var client = new ComputeServiceRestClient(GetValidContext(), this.ServiceLocator); await client.GetFlavors(); Assert.AreEqual(string.Format("{0}/flavors", endpoint), this.simulator.Uri.ToString()); Assert.AreEqual(HttpMethod.Get, this.simulator.Method); }