using System ;
using System.Diagnostics ;
using System.IO ;
using System.Threading ;
using System.Xml ;
using System.Xml.Linq ;
using System.Xml.XPath ;
using NUnit.Framework ;
using NzbDrone.Common.EnvironmentInfo ;
using NzbDrone.Common.Processes ;
using RestSharp ;
namespace NzbDrone.Test.Common
{
public class NzbDroneRunner
{
private readonly IProcessProvider _processProvider ;
private readonly IRestClient _restClient ;
private Process _nzbDroneProcess ;
public string AppData { get ; private set ; }
public string ApiKey { get ; private set ; }
public NzbDroneRunner ( int port = 8989 )
{
_processProvider = new ProcessProvider ( ) ;
_restClient = new RestClient ( "http://localhost:8989/api" ) ;
}
public void Start ( )
{
AppData = Path . Combine ( Directory . GetCurrentDirectory ( ) , "_intg_" + DateTime . Now . Ticks ) ;
var nzbdroneConsoleExe = "NzbDrone.Console.exe" ;
if ( OsInfo . IsMono )
{
nzbdroneConsoleExe = "NzbDrone.exe" ;
}
if ( BuildInfo . IsDebug )
{
Start ( "..\\..\\..\\..\\..\\_output\\NzbDrone.Console.exe" ) ;
}
else
{
Start ( Path . Combine ( "bin" , nzbdroneConsoleExe ) ) ;
}
while ( true )
{
_nzbDroneProcess . Refresh ( ) ;
if ( _nzbDroneProcess . HasExited )
{
Assert . Fail ( "Process has exited" ) ;
}
SetApiKey ( ) ;
var request = new RestRequest ( "system/status" ) ;
request . AddHeader ( "Authorization" , ApiKey ) ;
var statusCall = _restClient . Get ( request ) ;
if ( statusCall . ResponseStatus = = ResponseStatus . Completed )
{
Console . WriteLine ( "NzbDrone is started. Running Tests" ) ;
return ;
}
Console . WriteLine ( "Waiting for NzbDrone to start. Response Status : {0} [{1}] {2}" , statusCall . ResponseStatus , statusCall . StatusDescription , statusCall . ErrorException ) ;
Thread . Sleep ( 500 ) ;
}
}
public void KillAll ( )
{
_processProvider . KillAll ( ProcessProvider . NZB_DRONE_CONSOLE_PROCESS_NAME ) ;
_processProvider . KillAll ( ProcessProvider . NZB_DRONE_PROCESS_NAME ) ;
}
private void Start ( string outputNzbdroneConsoleExe )
{
var args = "-nobrowser -data=\"" + AppData + "\"" ;
_nzbDroneProcess = _processProvider . Start ( outputNzbdroneConsoleExe , args , OnOutputDataReceived , OnOutputDataReceived ) ;
}
private void OnOutputDataReceived ( string data )
{
Console . WriteLine ( data ) ;
if ( data . Contains ( "Press enter to exit" ) )
{
_nzbDroneProcess . StandardInput . WriteLine ( " " ) ;
}
}
private void SetApiKey ( )
{
var configFile = Path . Combine ( AppData , "config.xml" ) ;
var attempts = 0 ;
while ( ApiKey = = null & & attempts < 50 )
{
try
{
if ( File . Exists ( configFile ) )
{
var apiKeyElement = XDocument . Load ( configFile )
. XPathSelectElement ( "Config/ApiKey" ) ;
if ( apiKeyElement ! = null )
{
ApiKey = apiKeyElement . Value ;
}
}
}
catch ( XmlException ex )
{
Console . WriteLine ( "Error getting API Key from XML file: " + ex . Message , ex ) ;
}
attempts + + ;
Thread . Sleep ( 1000 ) ;
}
}
}
}