Client and dependencies are now properly disposed of
This commit is contained in:
parent
ab4cf8c333
commit
24554dde87
3 changed files with 76 additions and 13 deletions
|
@ -10,14 +10,13 @@ using BankingBot.Enums;
|
||||||
|
|
||||||
namespace BankingBot
|
namespace BankingBot
|
||||||
{
|
{
|
||||||
public class BankingClient <T> : IClient
|
public class BankingClient <T> : IClient, IDisposable
|
||||||
where T : IWebDriver
|
where T : IWebDriver
|
||||||
{
|
{
|
||||||
#region Dependencies
|
#region Dependencies
|
||||||
readonly ILoginManager loginManager;
|
readonly ILoginManager loginManager;
|
||||||
readonly IAccountManager accountManager;
|
readonly IAccountManager accountManager;
|
||||||
|
readonly IBrowserBot browserBot;
|
||||||
protected readonly IBrowserBot BrowserBot;
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public ILoginCredentials LoginCredentials { get; private set; }
|
public ILoginCredentials LoginCredentials { get; private set; }
|
||||||
|
@ -30,10 +29,9 @@ namespace BankingBot
|
||||||
|
|
||||||
public BankingClient()
|
public BankingClient()
|
||||||
{
|
{
|
||||||
BrowserBot = new BrowserBot<T>();
|
browserBot = new BrowserBot<T>();
|
||||||
|
loginManager = new LoginManager(browserBot);
|
||||||
loginManager = new LoginManager(BrowserBot);
|
accountManager = new AccountManager(browserBot);
|
||||||
accountManager = new AccountManager(BrowserBot);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#region Actions - Login Manager
|
#region Actions - Login Manager
|
||||||
|
@ -67,5 +65,41 @@ namespace BankingBot
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
#region IDisposable Support
|
||||||
|
private bool disposedValue = false; // To detect redundant calls
|
||||||
|
|
||||||
|
protected virtual void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (!disposedValue)
|
||||||
|
{
|
||||||
|
if (disposing)
|
||||||
|
{
|
||||||
|
browserBot.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: free unmanaged resources (unmanaged objects) and override a finalizer below.
|
||||||
|
// TODO: set large fields to null.
|
||||||
|
|
||||||
|
disposedValue = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: override a finalizer only if Dispose(bool disposing) above has code to free unmanaged resources.
|
||||||
|
// ~BankingClient() {
|
||||||
|
// // Do not change this code. Put cleanup code in Dispose(bool disposing) above.
|
||||||
|
// Dispose(false);
|
||||||
|
// }
|
||||||
|
|
||||||
|
// This code added to correctly implement the disposable pattern.
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
// Do not change this code. Put cleanup code in Dispose(bool disposing) above.
|
||||||
|
Dispose(true);
|
||||||
|
// TODO: uncomment the following line if the finalizer is overridden above.
|
||||||
|
// GC.SuppressFinalize(this);
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,10 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using BankingBot.Contracts;
|
using BankingBot.Contracts;
|
||||||
using OpenQA.Selenium;
|
using OpenQA.Selenium;
|
||||||
|
|
||||||
namespace BankingBot
|
namespace BankingBot
|
||||||
{
|
{
|
||||||
public class BrowserBot<T> : IBrowserBot
|
public class BrowserBot<T> : IBrowserBot, IDisposable
|
||||||
where T : IWebDriver
|
where T : IWebDriver
|
||||||
{
|
{
|
||||||
public IWebDriver WebDriver { get; private set; }
|
public IWebDriver WebDriver { get; private set; }
|
||||||
|
@ -17,5 +13,37 @@ namespace BankingBot
|
||||||
{
|
{
|
||||||
WebDriver = (IWebDriver)Activator.CreateInstance(typeof(T));
|
WebDriver = (IWebDriver)Activator.CreateInstance(typeof(T));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#region IDisposable Support
|
||||||
|
private bool disposedValue = false; // To detect redundant calls
|
||||||
|
|
||||||
|
protected virtual void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (!disposedValue)
|
||||||
|
{
|
||||||
|
if (disposing)
|
||||||
|
{
|
||||||
|
WebDriver.Quit();
|
||||||
|
}
|
||||||
|
|
||||||
|
disposedValue = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: override a finalizer only if Dispose(bool disposing) above has code to free unmanaged resources.
|
||||||
|
// ~BrowserBot() {
|
||||||
|
// // Do not change this code. Put cleanup code in Dispose(bool disposing) above.
|
||||||
|
// Dispose(false);
|
||||||
|
// }
|
||||||
|
|
||||||
|
// This code added to correctly implement the disposable pattern.
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
// Do not change this code. Put cleanup code in Dispose(bool disposing) above.
|
||||||
|
Dispose(true);
|
||||||
|
// TODO: uncomment the following line if the finalizer is overridden above.
|
||||||
|
// GC.SuppressFinalize(this);
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
using OpenQA.Selenium;
|
using OpenQA.Selenium;
|
||||||
|
using System;
|
||||||
|
|
||||||
namespace BankingBot.Contracts
|
namespace BankingBot.Contracts
|
||||||
{
|
{
|
||||||
public interface IBrowserBot
|
public interface IBrowserBot : IDisposable
|
||||||
{
|
{
|
||||||
IWebDriver WebDriver { get; }
|
IWebDriver WebDriver { get; }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue