From 94bce0670cc6e3a70fcba7807ddc3be7c378fb5e Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Fri, 10 Feb 2017 14:58:10 +0000 Subject: [PATCH] Script manager changes --- .../LoginManagers/LloydsLoginManager.cs | 18 +++++++- BankingBot/BankingBot.csproj | 2 +- BankingBot/Contracts/IScriptManager.cs | 10 ++++ BankingBot/ScriptManagement/ScriptManager.cs | 46 +++++++++++++++---- 4 files changed, 64 insertions(+), 12 deletions(-) create mode 100644 BankingBot/Contracts/IScriptManager.cs diff --git a/BankingBot/ActionManagers/LoginManagers/LloydsLoginManager.cs b/BankingBot/ActionManagers/LoginManagers/LloydsLoginManager.cs index 63bb527..ce9fab9 100644 --- a/BankingBot/ActionManagers/LoginManagers/LloydsLoginManager.cs +++ b/BankingBot/ActionManagers/LoginManagers/LloydsLoginManager.cs @@ -1,4 +1,5 @@ using System; +using System.Collections.Generic; using System.Text.RegularExpressions; using BankingBot.Attributes; using BankingBot.Contracts; @@ -6,6 +7,7 @@ using BankingBot.LoginCredentials; using OpenQA.Selenium; using BankingBot.Responses; using BankingBot.Enums; +using BankingBot.ScriptManagement; namespace BankingBot.ActionManagers.LoginManagers { @@ -20,10 +22,14 @@ namespace BankingBot.ActionManagers.LoginManagers } private readonly IBrowserBot _browserBot; + private readonly IScriptManager _scriptManager; - public LloydsLoginManager(IBrowserBot browserBot) + public LloydsLoginManager( + IBrowserBot browserBot, + IScriptManager scriptManager) { _browserBot = browserBot; + _scriptManager = scriptManager; } public Response Login(ILoginCredentials credentials) @@ -31,6 +37,16 @@ namespace BankingBot.ActionManagers.LoginManagers var response = new Response(); var lloydsCreds = (LloydsLoginCredentials)credentials; + var data = new Dictionary + { + { "name", "aaron" }, + { "age", "12" }, + { "isOldEnough", "true" } + }; + + _scriptManager.Execute("scripts/test.js", data, ScriptBundles.Global); + + try { LoginStep1(lloydsCreds); diff --git a/BankingBot/BankingBot.csproj b/BankingBot/BankingBot.csproj index 2535ded..f6a53cd 100644 --- a/BankingBot/BankingBot.csproj +++ b/BankingBot/BankingBot.csproj @@ -58,6 +58,7 @@ + @@ -70,7 +71,6 @@ - diff --git a/BankingBot/Contracts/IScriptManager.cs b/BankingBot/Contracts/IScriptManager.cs new file mode 100644 index 0000000..4f0b923 --- /dev/null +++ b/BankingBot/Contracts/IScriptManager.cs @@ -0,0 +1,10 @@ +using System.Collections.Generic; + +namespace BankingBot.Contracts +{ + public interface IScriptManager + { + T Execute(string scriptPath, Dictionary data, string[] scripts); + void Execute(string scriptPath, Dictionary data, string[] scripts); + } +} \ No newline at end of file diff --git a/BankingBot/ScriptManagement/ScriptManager.cs b/BankingBot/ScriptManagement/ScriptManager.cs index a921fde..23d6d5b 100644 --- a/BankingBot/ScriptManagement/ScriptManager.cs +++ b/BankingBot/ScriptManagement/ScriptManager.cs @@ -10,7 +10,7 @@ using OpenQA.Selenium.Internal; namespace BankingBot.ScriptManagement { - public class ScriptManager + public class ScriptManager : IScriptManager { private readonly IBrowserBot _browserBot; @@ -21,31 +21,57 @@ namespace BankingBot.ScriptManagement public T Execute(string scriptPath, Dictionary data = null, string[] includedScripts = null) { - var scriptContent = ""; + var script = GenerateScript(scriptPath, data, includedScripts); + var executor = _browserBot.WebDriver as IJavaScriptExecutor; + return (T)executor.ExecuteScript(script); + } - if (includedScripts != null) + public void Execute(string scriptPath, Dictionary data, string[] includedScripts = null) + { + var script = GenerateScript(scriptPath, data, includedScripts); + var executor = _browserBot.WebDriver as IJavaScriptExecutor; + } + + private string GetIncludedScriptsCompilation(string currentCompliation, string[] scripts) + { + if (scripts != null) { - foreach (var script in includedScripts) + foreach (var script in scripts) { - var includedScriptContent = File.ReadAllText(script).Trim(); - scriptContent += includedScriptContent; + currentCompliation += GetScriptContent(script); } } - scriptContent += File.ReadAllText(scriptPath).Trim(); + return currentCompliation; + } + private string GetScriptContent(string scriptPath) + { + return File.ReadAllText(scriptPath).Trim(); + } + + private string GetScriptWithPopulatedData(string currentCompliation, Dictionary data) + { if (data != null) { var placeholderFormat = "__${0}"; foreach (var pair in data) { var placeholderText = string.Format(placeholderFormat, pair.Key); - scriptContent = scriptContent.Replace(placeholderText, pair.Value); + currentCompliation = currentCompliation.Replace(placeholderText, pair.Value); } } - var executor = _browserBot.WebDriver as IJavaScriptExecutor; - return (T)executor.ExecuteScript(scriptContent); + return currentCompliation; + } + + private string GenerateScript(string scriptPath, Dictionary data = null, string[] includedScripts = null) + { + var scriptContent = GetIncludedScriptsCompilation("", includedScripts); + scriptContent += GetScriptContent(scriptPath); + scriptContent = GetScriptWithPopulatedData(scriptContent, data); + + return scriptContent; } } }