|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NLog.Config;
|
|
|
|
|
using NLog.Targets;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Automation.Test.PageModel;
|
|
|
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
|
|
|
using NzbDrone.Test.Common;
|
|
|
|
|
using OpenQA.Selenium;
|
|
|
|
|
using OpenQA.Selenium.Firefox;
|
|
|
|
|
using OpenQA.Selenium.Remote;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Automation.Test
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
[AutomationTest]
|
|
|
|
|
public abstract class AutomationTest
|
|
|
|
|
{
|
|
|
|
|
private NzbDroneRunner _runner;
|
|
|
|
|
protected RemoteWebDriver driver;
|
|
|
|
|
|
|
|
|
|
public AutomationTest()
|
|
|
|
|
{
|
|
|
|
|
new StartupContext();
|
|
|
|
|
|
|
|
|
|
LogManager.Configuration = new LoggingConfiguration();
|
|
|
|
|
var consoleTarget = new ConsoleTarget { Layout = "${level}: ${message} ${exception}" };
|
|
|
|
|
LogManager.Configuration.AddTarget(consoleTarget.GetType().Name, consoleTarget);
|
|
|
|
|
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", NLog.LogLevel.Trace, consoleTarget));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestFixtureSetUp]
|
|
|
|
|
public void SmokeTestSetup()
|
|
|
|
|
{
|
|
|
|
|
driver = new FirefoxDriver();
|
|
|
|
|
|
|
|
|
|
_runner = new NzbDroneRunner(LogManager.GetCurrentClassLogger());
|
|
|
|
|
_runner.KillAll();
|
|
|
|
|
_runner.Start();
|
|
|
|
|
|
|
|
|
|
driver.Url = "http://localhost:7878";
|
|
|
|
|
|
|
|
|
|
var page = new PageBase(driver);
|
|
|
|
|
page.WaitForNoSpinner();
|
|
|
|
|
|
|
|
|
|
driver.ExecuteScript("window.NzbDrone.NameViews = true;");
|
|
|
|
|
|
|
|
|
|
GetPageErrors().Should().BeEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected IEnumerable<string> GetPageErrors()
|
|
|
|
|
{
|
|
|
|
|
return driver.FindElements(By.CssSelector("#errors div"))
|
|
|
|
|
.Select(e => e.Text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestFixtureTearDown]
|
|
|
|
|
public void SmokeTestTearDown()
|
|
|
|
|
{
|
|
|
|
|
_runner.KillAll();
|
|
|
|
|
driver.Quit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TearDown]
|
|
|
|
|
public void AutomationTearDown()
|
|
|
|
|
{
|
|
|
|
|
GetPageErrors().Should().BeEmpty();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|