Merged custom-exceptions into main
This commit is contained in:
commit
37c363f18d
3 changed files with 25 additions and 3 deletions
|
@ -9,6 +9,7 @@ using BankingBot.Responses;
|
||||||
using BankingBot.Enums;
|
using BankingBot.Enums;
|
||||||
using BankingBot.ScriptManagement;
|
using BankingBot.ScriptManagement;
|
||||||
using BankingBot.Urls;
|
using BankingBot.Urls;
|
||||||
|
using BankingBot.Exceptions;
|
||||||
|
|
||||||
namespace BankingBot.ActionManagers.LoginManagers
|
namespace BankingBot.ActionManagers.LoginManagers
|
||||||
{
|
{
|
||||||
|
@ -36,12 +37,12 @@ namespace BankingBot.ActionManagers.LoginManagers
|
||||||
LoginStep1(lloydsCreds);
|
LoginStep1(lloydsCreds);
|
||||||
|
|
||||||
if (!_browserBot.WebDriver.Url.Contains(LloydsUrls.MemorableInfo))
|
if (!_browserBot.WebDriver.Url.Contains(LloydsUrls.MemorableInfo))
|
||||||
throw new InvalidOperationException("Invalid login credentials");
|
throw new InvalidCredentialsException("Invalid login credentials");
|
||||||
|
|
||||||
LoginStep2(lloydsCreds);
|
LoginStep2(lloydsCreds);
|
||||||
|
|
||||||
if (!_browserBot.WebDriver.Url.Contains(LloydsUrls.AccountOverview))
|
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;
|
response.Status = ResponseStatus.Success;
|
||||||
}
|
}
|
||||||
|
@ -71,7 +72,7 @@ namespace BankingBot.ActionManagers.LoginManagers
|
||||||
|
|
||||||
var maxPassphraseLength = passphraseIndexes[2];
|
var maxPassphraseLength = passphraseIndexes[2];
|
||||||
if (credentials.Passphrase.Length < maxPassphraseLength)
|
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(
|
_browserBot.WebDriver.FindElement(By.Id(GetPassphraseDdlId(1))).SendKeys(
|
||||||
credentials.Passphrase[passphraseIndexes[0]].ToString());
|
credentials.Passphrase[passphraseIndexes[0]].ToString());
|
||||||
|
|
|
@ -67,6 +67,7 @@
|
||||||
<Compile Include="Contracts\IScriptManager.cs" />
|
<Compile Include="Contracts\IScriptManager.cs" />
|
||||||
<Compile Include="Enums\Provider.cs" />
|
<Compile Include="Enums\Provider.cs" />
|
||||||
<Compile Include="Enums\ResponseStatus.cs" />
|
<Compile Include="Enums\ResponseStatus.cs" />
|
||||||
|
<Compile Include="Exceptions\InvalidCredentialsException.cs" />
|
||||||
<Compile Include="Extensions\StringExtensions.cs" />
|
<Compile Include="Extensions\StringExtensions.cs" />
|
||||||
<Compile Include="Helpers\AccountHelpers.cs" />
|
<Compile Include="Helpers\AccountHelpers.cs" />
|
||||||
<Compile Include="LoginCredentials\BarclaysLoginCredentials.cs" />
|
<Compile Include="LoginCredentials\BarclaysLoginCredentials.cs" />
|
||||||
|
|
20
BankingBot/Exceptions/InvalidCredentialsException.cs
Normal file
20
BankingBot/Exceptions/InvalidCredentialsException.cs
Normal 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)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue