GivenExecutingARequestToRetrieveARequestTokenThrowsAnException_AuthenticateClient_ThrowsAnAuthenticationException () { // Arrange. var mockRestClient = new Mock<IRestClient>(); mockRestClient .Setup(x => x.Execute(It.IsAny<IRestRequest>())) .Throws(new Exception("one does not simply 'get a job'.")); var twitterProvider = new TwitterProvider("a", "b", new RestClientFactory(mockRestClient.Object)); var nameValueCollection = new NameValueCollection { {"oauth_token", "aaa"}, {"oauth_verifier", "bbbb"} }; // Act. var result = Assert.Throws<AuthenticationException>( () => twitterProvider.AuthenticateClient(new TwitterAuthenticationServiceSettings(), nameValueCollection)); // Assert. Assert.NotNull(result); Assert.Equal("Failed to convert Request Token to an Access Token, from Twitter.", result.Message); Assert.NotNull(result.InnerException); Assert.Equal("one does not simply 'get a job'.", result.InnerException.Message); }
public void GivenAUserDeniesAcceptingTheAppAuthorization_AuthenticateClient_ThrowsAnAuthenticationException() { // Arrange. var twitterProvider = new TwitterProvider("a", "b"); var nameValueCollection = new NameValueCollection { {"denied", "JpQ7ZTt1nMeAhIypiOxLrkS3LreHwihKjsJcIJDf4To"} }; // Act. var result = Assert.Throws<AuthenticationException>( () => twitterProvider.AuthenticateClient(new TwitterAuthenticationServiceSettings(), nameValueCollection)); // Assert. Assert.NotNull(result); Assert.Equal( "Failed to accept the Twitter App Authorization. Therefore, authentication didn't proceed.", result.Message); }
public void GivenTheCallbackParamtersAreInvalid_AuthenticateClient_ThrowsAnAuthenticationException() { // Arrange. var mockRestClient = new Mock<IRestClient>(); mockRestClient .Setup(x => x.Execute(It.IsAny<IRestRequest>())) .Throws<Exception>(); var twitterProvider = new TwitterProvider("a", "b", new RestClientFactory(mockRestClient.Object)); var nameValueCollection = new NameValueCollection(); // Missing 2x required params. // Act. var result = Assert.Throws<ArgumentOutOfRangeException>( () => twitterProvider.AuthenticateClient(new TwitterAuthenticationServiceSettings(), nameValueCollection)); // Assert. Assert.NotNull(result); Assert.Equal("Specified argument was out of the range of valid values.\r\nParameter name: queryStringParameters", result.Message); }
public void GivenSomeValidVerifyCredentials_RetrieveUserInformation_ReturnsAnAuthenticatedClient() { // Arrange. var mockRestClient = new Mock<IRestClient>(); var mockRestResponseRetrieveRequestToken = new Mock<IRestResponse>(); mockRestResponseRetrieveRequestToken.Setup(x => x.StatusCode).Returns(HttpStatusCode.OK); mockRestResponseRetrieveRequestToken.Setup(x => x.Content).Returns("oauth_token=aaa&oauth_token_secret=ccc"); var verifyCredentialsResult = new VerifyCredentialsResult { Name = "Some Name", Id = 1234, Lang = "en-au", ScreenName = "Some-Screen-Name" }; var mockRestResponseVerifyCredentials = new Mock<IRestResponse<VerifyCredentialsResult>>(); mockRestResponseVerifyCredentials.Setup(x => x.Data).Returns(verifyCredentialsResult); mockRestResponseVerifyCredentials.Setup(x => x.StatusCode).Returns(HttpStatusCode.OK); mockRestClient .Setup(x => x.Execute(It.IsAny<IRestRequest>())) .Returns(mockRestResponseRetrieveRequestToken.Object); mockRestClient .Setup(x => x.Execute<VerifyCredentialsResult>(It.IsAny<IRestRequest>())) .Returns(mockRestResponseVerifyCredentials.Object); var twitterProvider = new TwitterProvider("a", "b", new Uri("http://www.google.com.au"), mockRestClient.Object); var nameValueCollection = new NameValueCollection { {"oauth_token", "aaa"}, {"oauth_verifier", "bbb"} }; // Act. var result = twitterProvider.AuthenticateClient(nameValueCollection, "asd"); // Assert. Assert.NotNull(result); Assert.Equal(ProviderType.Twitter, result.ProviderType); Assert.NotNull(result.UserInformation); Assert.NotNull(result.UserInformation.Id); Assert.NotNull(result.UserInformation.Locale); Assert.NotNull(result.UserInformation.Name); Assert.NotNull(result.UserInformation.UserName); }
public void GivenAnInvalidVerifyCredentials_RetrieveUserInformation_ThrowsAnAuthenticationException() { // Arrange. var mockRestClient = new Mock<IRestClient>(); var mockRestResponseRetrieveRequestToken = new Mock<IRestResponse>(); mockRestResponseRetrieveRequestToken.Setup(x => x.StatusCode).Returns(HttpStatusCode.OK); mockRestResponseRetrieveRequestToken.Setup(x => x.Content).Returns("oauth_token=aaa&oauth_token_secret=ccc"); var mockRestResponseVerifyCredentials = new Mock<IRestResponse<VerifyCredentialsResult>>(); mockRestResponseVerifyCredentials.Setup(x => x.StatusCode).Returns(HttpStatusCode.Unauthorized); mockRestResponseVerifyCredentials.Setup(x => x.StatusDescription).Returns("Unauthorized"); mockRestClient .Setup(x => x.Execute(It.IsAny<IRestRequest>())) .Returns(mockRestResponseRetrieveRequestToken.Object); mockRestClient .Setup(x => x.Execute<VerifyCredentialsResult>(It.IsAny<IRestRequest>())) .Returns(mockRestResponseVerifyCredentials.Object); var twitterProvider = new TwitterProvider("a", "b", new Uri("http://www.google.com.au"), mockRestClient.Object); var nameValueCollection = new NameValueCollection { {"oauth_token", "aaa"}, {"oauth_verifier", "bbb"} }; // Act. var result = Assert.Throws<AuthenticationException>(() => twitterProvider.AuthenticateClient(nameValueCollection, "asd")); // Assert. Assert.NotNull(result); Assert.Equal("Failed to retrieve VerifyCredentials json data OR the the response was not an HTTP Status 200 OK. Response Status: Unauthorized. Response Description: Unauthorized", result.Message); }
public void GivenExecutingVerifyCredentialsThrowsAnException_AuthenticateClient_ThrowsAnAuthenticationException() { // Arrange. const string exceptionMessage = "some mock exception."; var mockRestClient = new Mock<IRestClient>(); var mockRestResponseRetrieveRequestToken = new Mock<IRestResponse>(); mockRestResponseRetrieveRequestToken.Setup(x => x.StatusCode).Returns(HttpStatusCode.OK); mockRestResponseRetrieveRequestToken.Setup(x => x.Content).Returns("oauth_token=aaa&oauth_token_secret=ccc"); var verifyCredentialsResult = new VerifyCredentialsResult { Name = "Some Name", Id = 1234, Lang = "en-au", ScreenName = "Some-Screen-Name" }; var mockRestResponseVerifyCredentials = new Mock<IRestResponse<VerifyCredentialsResult>>(); mockRestResponseVerifyCredentials.Setup(x => x.Data).Returns(verifyCredentialsResult); mockRestClient .Setup(x => x.Execute(It.IsAny<IRestRequest>())) .Returns(mockRestResponseRetrieveRequestToken.Object); mockRestClient .Setup(x => x.Execute<VerifyCredentialsResult>(It.IsAny<IRestRequest>())) .Throws(new Exception(exceptionMessage)); var twitterProvider = new TwitterProvider("a", "b", new Uri("http://www.google.com.au"), mockRestClient.Object); var nameValueCollection = new NameValueCollection { {"oauth_token", "aaa"}, {"oauth_verifier", "bbb"} }; // Act. var result = Assert.Throws<AuthenticationException>(() => twitterProvider.AuthenticateClient(nameValueCollection, "asd")); // Assert. Assert.NotNull(result); Assert.Equal("Failed to retrieve VerifyCredentials json data from the Twitter Api.", result.Message); }
public void GivenAnRequestTokenWithMissingParameters_AuthenticateClient_ThrowsAnAuthenticationException() { // Arrange. var mockRestClient = new Mock<IRestClient>(); var mockRestResponse = new Mock<IRestResponse>(); mockRestResponse.Setup(x => x.StatusCode).Returns(HttpStatusCode.OK); mockRestClient .Setup(x => x.Execute(It.IsAny<IRestRequest>())) .Returns(mockRestResponse.Object); var twitterProvider = new TwitterProvider("a", "b", new Uri("http://www.google.com.au"), mockRestClient.Object); var nameValueCollection = new NameValueCollection { {"oauth_token", "aaa"} }; // Missing oauth_secret. // Act. var result = Assert.Throws<AuthenticationException>(() => twitterProvider.AuthenticateClient(nameValueCollection, "asd")); // Assert. Assert.NotNull(result); Assert.Equal("Failed to retrieve an oauth_token and an oauth_token_secret after the client has signed and approved via Twitter.", result.Message); }
public void GivenAnInvalidRequestToken_AuthenticateClient_ThrowsAnAuthenticationException() { // Arrange. var mockRestClient = new Mock<IRestClient>(); var mockRestResponse = new Mock<IRestResponse>(); mockRestResponse.Setup(x => x.StatusCode).Returns(HttpStatusCode.Unauthorized); mockRestResponse.Setup(x => x.StatusDescription).Returns("Unauthorized"); mockRestClient .Setup(x => x.Execute(It.IsAny<IRestRequest>())) .Returns(mockRestResponse.Object); var twitterProvider = new TwitterProvider("a", "b", new Uri("http://www.google.com.au"), mockRestClient.Object); var nameValueCollection = new NameValueCollection { {"oauth_token", "aaa"}, {"oauth_verifier", "bbbb"} }; // Act. var result = Assert.Throws<AuthenticationException>(() => twitterProvider.AuthenticateClient(nameValueCollection, "asas")); // Assert. Assert.NotNull(result); Assert.Equal("Failed to obtain an Access Token from Twitter OR the the response was not an HTTP Status 200 OK. Response Status: Unauthorized. Response Description: Unauthorized", result.Message); }
public void GivenTheCallbackParamtersAreInvalid_AuthenticateClient_ThrowsAnAuthenticationException() { // Arrange. var mockRestClient = new Mock<IRestClient>(); mockRestClient .Setup(x => x.Execute(It.IsAny<IRestRequest>())) .Throws<Exception>(); var twitterProvider = new TwitterProvider("a", "b", new Uri("http://www.google.com.au"), mockRestClient.Object); var nameValueCollection = new NameValueCollection(); // Missing 2x required params. // Act. var result = Assert.Throws<AuthenticationException>(() => twitterProvider.AuthenticateClient(nameValueCollection, "aa")); // Assert. Assert.NotNull(result); Assert.Equal("Failed to retrieve an oauth_token and an oauth_token_secret after the client has signed and approved via Twitter.", result.Message); }
public void GivenAUserDeniesAcceptingTheAppAuthorization_AuthenticateClient_ThrowsAnAuthenticationException() { // Arrange. var mockRestClient = new Mock<IRestClient>(); var twitterProvider = new TwitterProvider("a", "b", new Uri("http://www.google.com.au"), mockRestClient.Object); var nameValueCollection = new NameValueCollection { {"denied", "JpQ7ZTt1nMeAhIypiOxLrkS3LreHwihKjsJcIJDf4To"} }; // Act. var result = Assert.Throws<AuthenticationException>(() => twitterProvider.AuthenticateClient(nameValueCollection, null)); // Assert. Assert.NotNull(result); Assert.Equal("Failed to accept the Twitter App Authorization. Therefore, authentication didn't proceed.", result.Message); }