Merged custom-exceptions into main

This commit is contained in:
AaronJamesY 2017-02-12 22:28:03 +00:00
commit 37c363f18d
3 changed files with 25 additions and 3 deletions

View file

@ -9,6 +9,7 @@ using BankingBot.Responses;
using BankingBot.Enums;
using BankingBot.ScriptManagement;
using BankingBot.Urls;
using BankingBot.Exceptions;
namespace BankingBot.ActionManagers.LoginManagers
{
@ -36,12 +37,12 @@ namespace BankingBot.ActionManagers.LoginManagers
LoginStep1(lloydsCreds);
if (!_browserBot.WebDriver.Url.Contains(LloydsUrls.MemorableInfo))
throw new InvalidOperationException("Invalid login credentials");
throw new InvalidCredentialsException("Invalid login credentials");
LoginStep2(lloydsCreds);
if (!_browserBot.WebDriver.Url.Contains(LloydsUrls.AccountOverview))
throw new InvalidOperationException("Invalid passphrase for account");
throw new InvalidCredentialsException("Invalid passphrase for account");
response.Status = ResponseStatus.Success;
}
@ -71,7 +72,7 @@ namespace BankingBot.ActionManagers.LoginManagers
var maxPassphraseLength = passphraseIndexes[2];
if (credentials.Passphrase.Length < maxPassphraseLength)
throw new IndexOutOfRangeException("Paspshrase is too short");
throw new InvalidCredentialsException("Passphrase is too short");
_browserBot.WebDriver.FindElement(By.Id(GetPassphraseDdlId(1))).SendKeys(
credentials.Passphrase[passphraseIndexes[0]].ToString());

View file

@ -67,6 +67,7 @@
<Compile Include="Contracts\IScriptManager.cs" />
<Compile Include="Enums\Provider.cs" />
<Compile Include="Enums\ResponseStatus.cs" />
<Compile Include="Exceptions\InvalidCredentialsException.cs" />
<Compile Include="Extensions\StringExtensions.cs" />
<Compile Include="Helpers\AccountHelpers.cs" />
<Compile Include="LoginCredentials\BarclaysLoginCredentials.cs" />

View file

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.Exceptions
{
public class InvalidCredentialsException : Exception
{
public InvalidCredentialsException()
{
}
public InvalidCredentialsException(string message)
:base(message)
{
}
}
}