|
@@ -20,7 +20,8 @@ namespace Website.Tests.Controllers {
|
|
|
public void Login_WithReturnUrl_ReturnsViewThatHasModelWithReturnUrlAndFalseFailedAttempt() {
|
|
|
var authenticationProvider = Substitute.For<IAuthenticationProvider>();
|
|
|
var apiKeyManager = Substitute.For<IApiKeyManager>();
|
|
|
- var controller = new AccountController(authenticationProvider, apiKeyManager);
|
|
|
+ var mailboxesApi = Substitute.For<IMailboxesApi>();
|
|
|
+ var controller = new AccountController(authenticationProvider, apiKeyManager, mailboxesApi);
|
|
|
|
|
|
var expected = new LoginViewModel {
|
|
|
ReturnUrl = "returnUrl",
|
|
@@ -36,7 +37,8 @@ namespace Website.Tests.Controllers {
|
|
|
public void Login_WithReturnUrlAndFailedAttempt_ReturnsViewThatHasModelWithReturnUrlAndTrueFailedAttempt() {
|
|
|
var authenticationProvider = Substitute.For<IAuthenticationProvider>();
|
|
|
var apiKeyManager = Substitute.For<IApiKeyManager>();
|
|
|
- var controller = new AccountController(authenticationProvider, apiKeyManager);
|
|
|
+ var mailboxesApi = Substitute.For<IMailboxesApi>();
|
|
|
+ var controller = new AccountController(authenticationProvider, apiKeyManager, mailboxesApi);
|
|
|
|
|
|
var expected = new LoginViewModel {
|
|
|
ReturnUrl = "returnUrl",
|
|
@@ -52,7 +54,8 @@ namespace Website.Tests.Controllers {
|
|
|
public async Task Login_WithLoginRequest_WhenAuthenticationIsUnsuccessful_ReturnsViewThatHasModelWithReturnUrlAndTrueFailedAttempt() {
|
|
|
var authenticationProvider = Substitute.For<IAuthenticationProvider>();
|
|
|
var apiKeyManager = Substitute.For<IApiKeyManager>();
|
|
|
- var controller = new AccountController(authenticationProvider, apiKeyManager);
|
|
|
+ var mailboxesApi = Substitute.For<IMailboxesApi>();
|
|
|
+ var controller = new AccountController(authenticationProvider, apiKeyManager, mailboxesApi);
|
|
|
|
|
|
var request = new LoginRequest {
|
|
|
Username = "username",
|
|
@@ -80,7 +83,8 @@ namespace Website.Tests.Controllers {
|
|
|
|
|
|
var authenticationProvider = Substitute.For<IAuthenticationProvider>();
|
|
|
var apiKeyManager = Substitute.For<IApiKeyManager>();
|
|
|
- var controller = new AccountController(authenticationProvider, apiKeyManager) {
|
|
|
+ var mailboxesApi = Substitute.For<IMailboxesApi>();
|
|
|
+ var controller = new AccountController(authenticationProvider, apiKeyManager, mailboxesApi) {
|
|
|
ControllerContext = new ControllerContext {
|
|
|
HttpContext = new DefaultHttpContext {
|
|
|
RequestServices = serviceProvider
|
|
@@ -116,7 +120,8 @@ namespace Website.Tests.Controllers {
|
|
|
|
|
|
var authenticationProvider = Substitute.For<IAuthenticationProvider>();
|
|
|
var apiKeyManager = Substitute.For<IApiKeyManager>();
|
|
|
- var controller = new AccountController(authenticationProvider, apiKeyManager) {
|
|
|
+ var mailboxesApi = Substitute.For<IMailboxesApi>();
|
|
|
+ var controller = new AccountController(authenticationProvider, apiKeyManager, mailboxesApi) {
|
|
|
ControllerContext = new ControllerContext {
|
|
|
HttpContext = new DefaultHttpContext {
|
|
|
RequestServices = serviceProvider
|
|
@@ -140,7 +145,8 @@ namespace Website.Tests.Controllers {
|
|
|
public async Task Login_WithLoginRequest_WhenAuthenticationServiceFails_ReturnsViewThatHasModelWithReturnUrlAndTrueFailedAttempt() {
|
|
|
var authenticationProvider = Substitute.For<IAuthenticationProvider>();
|
|
|
var apiKeyManager = Substitute.For<IApiKeyManager>();
|
|
|
- var controller = new AccountController(authenticationProvider, apiKeyManager);
|
|
|
+ var mailboxesApi = Substitute.For<IMailboxesApi>();
|
|
|
+ var controller = new AccountController(authenticationProvider, apiKeyManager, mailboxesApi);
|
|
|
|
|
|
var request = new LoginRequest {Username = "username", Password = "password", ReturnUrl = "returnUrl"};
|
|
|
|