2010-09-28 05:40:01 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using Gallio.Framework;
|
|
|
|
|
using MbUnit.Framework;
|
|
|
|
|
using MbUnit.Framework.ContractVerifiers;
|
|
|
|
|
using Moq;
|
2010-09-28 06:25:41 +02:00
|
|
|
|
using NzbDrone.Core.Providers;
|
2010-09-28 05:40:01 +02:00
|
|
|
|
using SubSonic.Repository;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2010-10-08 00:17:24 +02:00
|
|
|
|
// ReSharper disable InconsistentNaming
|
2010-09-28 05:40:01 +02:00
|
|
|
|
public class SabControllerTest
|
|
|
|
|
{
|
|
|
|
|
[Test]
|
|
|
|
|
public void AddByUrlSuccess()
|
|
|
|
|
{
|
|
|
|
|
//Setup
|
2011-02-17 03:14:41 +01:00
|
|
|
|
string sabHost = "192.168.5.55";
|
|
|
|
|
string sabPort = "2222";
|
2010-09-28 05:40:01 +02:00
|
|
|
|
string apikey = "5c770e3197e4fe763423ee7c392c25d1";
|
|
|
|
|
string username = "admin";
|
|
|
|
|
string password = "pass";
|
|
|
|
|
string priority = "0";
|
2011-02-17 03:14:41 +01:00
|
|
|
|
string category = "tv";
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
2010-09-28 06:25:41 +02:00
|
|
|
|
var config = new Mock<IConfigProvider>();
|
2011-02-17 03:14:41 +01:00
|
|
|
|
config.Setup(c => c.GetValue("SabHost", String.Empty, false)).Returns(sabHost);
|
|
|
|
|
config.Setup(c => c.GetValue("SabPort", String.Empty, false)).Returns(sabPort);
|
|
|
|
|
config.Setup(c => c.GetValue("SabApiKey", String.Empty, false)).Returns(apikey);
|
|
|
|
|
config.Setup(c => c.GetValue("SabUsername", String.Empty, false)).Returns(username);
|
|
|
|
|
config.Setup(c => c.GetValue("SabPassword", String.Empty, false)).Returns(password);
|
2011-03-30 08:18:35 +02:00
|
|
|
|
config.Setup(c => c.GetValue("SabTvPriority", String.Empty, false)).Returns(priority);
|
|
|
|
|
config.Setup(c => c.GetValue("SabTvCategory", String.Empty, true)).Returns(category);
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
2010-09-28 06:25:41 +02:00
|
|
|
|
var http = new Mock<IHttpProvider>();
|
2011-02-17 03:14:41 +01:00
|
|
|
|
http.Setup(s => s.DownloadString("http://192.168.5.55:2222/api?mode=addurl&name=http://www.nzbclub.com/nzb_download.aspx?mid=1950232&priority=0&cat=tv&nzbname=This+is+an+Nzb&apikey=5c770e3197e4fe763423ee7c392c25d1&ma_username=admin&ma_password=pass")).Returns("ok");
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
2010-10-05 08:21:18 +02:00
|
|
|
|
var target = new SabProvider(config.Object, http.Object);
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2010-09-28 07:35:15 +02:00
|
|
|
|
bool result = target.AddByUrl("http://www.nzbclub.com/nzb_download.aspx?mid=1950232", "This is an Nzb");
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
Assert.AreEqual(true, result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void AddByUrlError()
|
|
|
|
|
{
|
|
|
|
|
//Setup
|
2011-02-17 03:14:41 +01:00
|
|
|
|
string sabHost = "192.168.5.55";
|
|
|
|
|
string sabPort = "2222";
|
2010-09-28 05:40:01 +02:00
|
|
|
|
string apikey = "5c770e3197e4fe763423ee7c392c25d1";
|
|
|
|
|
string username = "admin";
|
|
|
|
|
string password = "pass";
|
|
|
|
|
string priority = "0";
|
2011-02-17 03:14:41 +01:00
|
|
|
|
string category = "tv";
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
2010-09-28 06:25:41 +02:00
|
|
|
|
var config = new Mock<IConfigProvider>();
|
2011-02-17 03:14:41 +01:00
|
|
|
|
config.Setup(c => c.GetValue("SabHost", String.Empty, false)).Returns(sabHost);
|
|
|
|
|
config.Setup(c => c.GetValue("SabPort", String.Empty, false)).Returns(sabPort);
|
|
|
|
|
config.Setup(c => c.GetValue("SabApiKey", String.Empty, false)).Returns(apikey);
|
|
|
|
|
config.Setup(c => c.GetValue("SabUsername", String.Empty, false)).Returns(username);
|
|
|
|
|
config.Setup(c => c.GetValue("SabPassword", String.Empty, false)).Returns(password);
|
2011-03-30 08:18:35 +02:00
|
|
|
|
config.Setup(c => c.GetValue("SabTvPriority", String.Empty, false)).Returns(priority);
|
|
|
|
|
config.Setup(c => c.GetValue("SabTvCategory", String.Empty, true)).Returns(category);
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
2010-09-28 06:25:41 +02:00
|
|
|
|
var http = new Mock<IHttpProvider>();
|
2011-02-17 03:14:41 +01:00
|
|
|
|
http.Setup(s => s.DownloadString("http://192.168.5.55:2222/api?mode=addurl&name=http://www.nzbclub.com/nzb_download.aspx?mid=1950232&priority=0&cat=tv&nzbname=This+is+an+Nzb&apikey=5c770e3197e4fe763423ee7c392c25d1&ma_username=admin&ma_password=pass")).Returns("error");
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
2010-10-05 08:21:18 +02:00
|
|
|
|
var target = new SabProvider(config.Object, http.Object);
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2010-09-28 07:35:15 +02:00
|
|
|
|
bool result = target.AddByUrl("http://www.nzbclub.com/nzb_download.aspx?mid=1950232", "This is an Nzb");
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
Assert.AreEqual(false, result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void IsInQueue_True()
|
|
|
|
|
{
|
|
|
|
|
//Setup
|
2011-02-17 03:14:41 +01:00
|
|
|
|
string sabHost = "192.168.5.55";
|
|
|
|
|
string sabPort = "2222";
|
2010-09-28 05:40:01 +02:00
|
|
|
|
string apikey = "5c770e3197e4fe763423ee7c392c25d1";
|
|
|
|
|
string username = "admin";
|
|
|
|
|
string password = "pass";
|
|
|
|
|
|
2010-09-28 06:25:41 +02:00
|
|
|
|
var config = new Mock<IConfigProvider>();
|
2011-02-17 03:14:41 +01:00
|
|
|
|
config.Setup(c => c.GetValue("SabHost", String.Empty, false)).Returns(sabHost);
|
|
|
|
|
config.Setup(c => c.GetValue("SabPort", String.Empty, false)).Returns(sabPort);
|
|
|
|
|
config.Setup(c => c.GetValue("SabApiKey", String.Empty, false)).Returns(apikey);
|
|
|
|
|
config.Setup(c => c.GetValue("SabUsername", String.Empty, false)).Returns(username);
|
|
|
|
|
config.Setup(c => c.GetValue("SabPassword", String.Empty, false)).Returns(password);
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
2010-09-28 06:25:41 +02:00
|
|
|
|
var http = new Mock<IHttpProvider>();
|
2010-09-28 05:40:01 +02:00
|
|
|
|
http.Setup(
|
|
|
|
|
s =>
|
2010-09-28 07:01:54 +02:00
|
|
|
|
s.DownloadString(
|
2011-02-17 03:14:41 +01:00
|
|
|
|
"http://192.168.5.55:2222/api?mode=queue&output=xml&apikey=5c770e3197e4fe763423ee7c392c25d1&ma_username=admin&ma_password=pass"))
|
2010-09-28 05:40:01 +02:00
|
|
|
|
.Returns(new StreamReader(@".\Files\Queue.xml").ReadToEnd());
|
|
|
|
|
|
2010-10-05 08:21:18 +02:00
|
|
|
|
var target = new SabProvider(config.Object, http.Object);
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2010-09-28 07:35:15 +02:00
|
|
|
|
bool result = target.IsInQueue("Ubuntu Test");
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
Assert.AreEqual(true, result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void IsInQueue_False_Empty()
|
|
|
|
|
{
|
|
|
|
|
//Setup
|
2011-02-17 03:14:41 +01:00
|
|
|
|
string sabHost = "192.168.5.55";
|
|
|
|
|
string sabPort = "2222";
|
2010-09-28 05:40:01 +02:00
|
|
|
|
string apikey = "5c770e3197e4fe763423ee7c392c25d1";
|
|
|
|
|
string username = "admin";
|
|
|
|
|
string password = "pass";
|
|
|
|
|
|
2010-09-28 06:25:41 +02:00
|
|
|
|
var config = new Mock<IConfigProvider>();
|
2011-02-17 03:14:41 +01:00
|
|
|
|
config.Setup(c => c.GetValue("SabHost", String.Empty, false)).Returns(sabHost);
|
|
|
|
|
config.Setup(c => c.GetValue("SabPort", String.Empty, false)).Returns(sabPort);
|
|
|
|
|
config.Setup(c => c.GetValue("SabApiKey", String.Empty, false)).Returns(apikey);
|
|
|
|
|
config.Setup(c => c.GetValue("SabUsername", String.Empty, false)).Returns(username);
|
|
|
|
|
config.Setup(c => c.GetValue("SabPassword", String.Empty, false)).Returns(password);
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
2010-09-28 06:25:41 +02:00
|
|
|
|
var http = new Mock<IHttpProvider>();
|
2010-09-28 05:40:01 +02:00
|
|
|
|
http.Setup(
|
|
|
|
|
s =>
|
2010-09-28 07:01:54 +02:00
|
|
|
|
s.DownloadString(
|
2011-02-17 03:14:41 +01:00
|
|
|
|
"http://192.168.5.55:2222/api?mode=queue&output=xml&apikey=5c770e3197e4fe763423ee7c392c25d1&ma_username=admin&ma_password=pass"))
|
2010-09-28 05:40:01 +02:00
|
|
|
|
.Returns(new StreamReader(@".\Files\QueueEmpty.xml").ReadToEnd());
|
|
|
|
|
|
2010-10-05 08:21:18 +02:00
|
|
|
|
var target = new SabProvider(config.Object, http.Object);
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2010-09-28 07:35:15 +02:00
|
|
|
|
bool result = target.IsInQueue(String.Empty);
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
Assert.AreEqual(false, result);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void IsInQueue_False_Error()
|
|
|
|
|
{
|
|
|
|
|
//Setup
|
2011-02-17 03:14:41 +01:00
|
|
|
|
string sabHost = "192.168.5.55";
|
|
|
|
|
string sabPort = "2222";
|
2010-09-28 05:40:01 +02:00
|
|
|
|
string apikey = "5c770e3197e4fe763423ee7c392c25d1";
|
|
|
|
|
string username = "admin";
|
|
|
|
|
string password = "pass";
|
|
|
|
|
|
2010-09-28 06:25:41 +02:00
|
|
|
|
var config = new Mock<IConfigProvider>();
|
2011-02-17 03:14:41 +01:00
|
|
|
|
config.Setup(c => c.GetValue("SabHost", String.Empty, false)).Returns(sabHost);
|
|
|
|
|
config.Setup(c => c.GetValue("SabPort", String.Empty, false)).Returns(sabPort);
|
|
|
|
|
config.Setup(c => c.GetValue("SabApiKey", String.Empty, false)).Returns(apikey);
|
|
|
|
|
config.Setup(c => c.GetValue("SabUsername", String.Empty, false)).Returns(username);
|
|
|
|
|
config.Setup(c => c.GetValue("SabPassword", String.Empty, false)).Returns(password);
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
2010-09-28 06:25:41 +02:00
|
|
|
|
var http = new Mock<IHttpProvider>();
|
2010-09-28 05:40:01 +02:00
|
|
|
|
http.Setup(
|
|
|
|
|
s =>
|
2010-09-28 07:01:54 +02:00
|
|
|
|
s.DownloadString(
|
2011-02-17 03:14:41 +01:00
|
|
|
|
"http://192.168.5.55:2222/api?mode=queue&output=xml&apikey=5c770e3197e4fe763423ee7c392c25d1&ma_username=admin&ma_password=pass"))
|
2010-09-28 05:40:01 +02:00
|
|
|
|
.Returns(new StreamReader(@".\Files\QueueError.xml").ReadToEnd());
|
|
|
|
|
|
2010-10-05 08:21:18 +02:00
|
|
|
|
var target = new SabProvider(config.Object, http.Object);
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2010-09-28 07:35:15 +02:00
|
|
|
|
bool result = target.IsInQueue(String.Empty);
|
2010-09-28 05:40:01 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
Assert.AreEqual(false, result);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|