public void Should_not_set_authorization_header_for_null_user_or_password(string username, string password) { // Act var client = RestApiClient.CreateHttpClient("http://localhost/", username, password); // Assert Assert.That(client.DefaultRequestHeaders.Authorization, Is.Null); }
public void Create_client_with_base_addres_and_accepting_JSON_media_type() { // Act var client = RestApiClient.CreateHttpClient("http://localhost/", null, null); // Assert Assert.That(client.BaseAddress, Is.EqualTo(new Uri("http://localhost/"))); Assert.That(client.DefaultRequestHeaders.Accept.Any(), Is.Not.Null); Assert.That(client.DefaultRequestHeaders.Accept.First().MediaType, Is.EqualTo("application/json")); }
public void Should_set_basic_authorization_header() { // Act var client = RestApiClient.CreateHttpClient("http://localhost/", "foo", "bar"); // Assert var headers = client.DefaultRequestHeaders; Assert.That(headers.Authorization, Is.Not.Null); Assert.That(headers.Authorization.Scheme, Is.EqualTo("Basic")); var token = headers.Authorization.Parameter; var userPasswordPair = Encoding.UTF8.GetString(Convert.FromBase64String(token)); Assert.That(userPasswordPair, Is.EqualTo("foo:bar")); }