99 lines
5.8 KiB
C#
99 lines
5.8 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Collections.Generic;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Http.Internal;
|
|
using Microsoft.AspNetCore.WebUtilities;
|
|
using Microsoft.Extensions.Logging;
|
|
using Xunit;
|
|
|
|
namespace E2ETests
|
|
{
|
|
public partial class Validator
|
|
{
|
|
public async Task LoginWithFacebook()
|
|
{
|
|
_httpClientHandler = new HttpClientHandler() { AllowAutoRedirect = false };
|
|
_httpClient = new HttpClient(_httpClientHandler) { BaseAddress = new Uri(_deploymentResult.ApplicationBaseUri) };
|
|
|
|
var response = await DoGetAsync("Account/Login");
|
|
await ThrowIfResponseStatusNotOk(response);
|
|
var responseContent = await response.Content.ReadAsStringAsync();
|
|
_logger.LogInformation("Signing in with Facebook account");
|
|
var formParameters = new List<KeyValuePair<string, string>>
|
|
{
|
|
new KeyValuePair<string, string>("provider", "Facebook"),
|
|
new KeyValuePair<string, string>("returnUrl", "/"),
|
|
new KeyValuePair<string, string>("__RequestVerificationToken", HtmlDOMHelper.RetrieveAntiForgeryToken(responseContent, "/Account/ExternalLogin")),
|
|
};
|
|
|
|
var content = new FormUrlEncodedContent(formParameters.ToArray());
|
|
response = await DoPostAsync("Account/ExternalLogin", content);
|
|
Assert.StartsWith("https://www.facebook.com/v2.6/dialog/oauth", response.Headers.Location.ToString());
|
|
var queryItems = new QueryCollection(QueryHelpers.ParseQuery(response.Headers.Location.Query));
|
|
Assert.Equal<string>("code", queryItems["response_type"]);
|
|
Assert.Equal<string>("[AppId]", queryItems["client_id"]);
|
|
Assert.Equal<string>(_deploymentResult.ApplicationBaseUri + "signin-facebook", queryItems["redirect_uri"]);
|
|
Assert.Equal<string>("public_profile,email,read_friendlists,user_checkins", queryItems["scope"]);
|
|
Assert.Equal<string>("ValidStateData", queryItems["state"]);
|
|
Assert.Equal<string>("custom", queryItems["custom_redirect_uri"]);
|
|
//Check for the correlation cookie
|
|
Assert.NotEmpty(
|
|
_httpClientHandler.CookieContainer.GetCookies(new Uri(_deploymentResult.ApplicationBaseUri))
|
|
.Cast<Cookie>()
|
|
.Where(cookie => cookie.Name.StartsWith(".AspNetCore.Correlation.Facebook")));
|
|
|
|
//This is just to generate a correlation cookie. Previous step would generate this cookie, but we have reset the handler now.
|
|
_httpClientHandler = new HttpClientHandler();
|
|
_httpClient = new HttpClient(_httpClientHandler) { BaseAddress = new Uri(_deploymentResult.ApplicationBaseUri) };
|
|
|
|
response = await DoGetAsync("Account/Login");
|
|
responseContent = await response.Content.ReadAsStringAsync();
|
|
formParameters = new List<KeyValuePair<string, string>>
|
|
{
|
|
new KeyValuePair<string, string>("provider", "Facebook"),
|
|
new KeyValuePair<string, string>("returnUrl", "/"),
|
|
new KeyValuePair<string, string>("__RequestVerificationToken", HtmlDOMHelper.RetrieveAntiForgeryToken(responseContent, "/Account/ExternalLogin")),
|
|
};
|
|
|
|
content = new FormUrlEncodedContent(formParameters.ToArray());
|
|
response = await DoPostAsync("Account/ExternalLogin", content);
|
|
//Post a message to the Facebook middleware
|
|
response = await DoGetAsync("signin-facebook?code=ValidCode&state=ValidStateData");
|
|
await ThrowIfResponseStatusNotOk(response);
|
|
responseContent = await response.Content.ReadAsStringAsync();
|
|
|
|
// Correlation cookie not getting cleared after successful signin?
|
|
Assert.DoesNotContain(".AspNetCore.Correlation.Facebook", GetCookieNames());
|
|
Assert.Equal(_deploymentResult.ApplicationBaseUri + "Account/ExternalLoginCallback?ReturnUrl=%2F", response.RequestMessage.RequestUri.AbsoluteUri);
|
|
Assert.Contains("AspnetvnextTest@test.com", responseContent, StringComparison.OrdinalIgnoreCase);
|
|
|
|
formParameters = new List<KeyValuePair<string, string>>
|
|
{
|
|
new KeyValuePair<string, string>("Email", "AspnetvnextTest@test.com"),
|
|
new KeyValuePair<string, string>("__RequestVerificationToken", HtmlDOMHelper.RetrieveAntiForgeryToken(responseContent, "/Account/ExternalLoginConfirmation?ReturnUrl=%2F")),
|
|
};
|
|
|
|
content = new FormUrlEncodedContent(formParameters.ToArray());
|
|
response = await DoPostAsync("Account/ExternalLoginConfirmation", content);
|
|
await ThrowIfResponseStatusNotOk(response);
|
|
responseContent = await response.Content.ReadAsStringAsync();
|
|
|
|
Assert.Contains(string.Format("Hello {0}!", "AspnetvnextTest@test.com"), responseContent, StringComparison.OrdinalIgnoreCase);
|
|
Assert.Contains("Log off", responseContent, StringComparison.OrdinalIgnoreCase);
|
|
// Verify cookie sent
|
|
Assert.Contains(IdentityCookieName, GetCookieNames());
|
|
Assert.DoesNotContain(ExternalLoginCookieName, GetCookieNames());
|
|
_logger.LogInformation("Successfully signed in with user '{email}'", "AspnetvnextTest@test.com");
|
|
|
|
_logger.LogInformation("Verifying if the middleware events were fired");
|
|
//Check for a non existing item
|
|
response = await DoGetAsync(string.Format("Admin/StoreManager/GetAlbumIdFromName?albumName={0}", "123"));
|
|
//This action requires admin permissions. If events are fired this permission is granted
|
|
Assert.Equal(HttpStatusCode.NotFound, response.StatusCode);
|
|
_logger.LogInformation("Middleware events were fired successfully");
|
|
}
|
|
}
|
|
} |