You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
178 lines
7.5 KiB
178 lines
7.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
using Gallio.Framework;
|
|
using log4net;
|
|
using MbUnit.Framework;
|
|
using MbUnit.Framework.ContractVerifiers;
|
|
using Moq;
|
|
using NzbDrone.Core.Providers;
|
|
using NzbDrone.Core.Repository;
|
|
using SubSonic.Repository;
|
|
|
|
namespace NzbDrone.Core.Test
|
|
{
|
|
[TestFixture]
|
|
// ReSharper disable InconsistentNaming
|
|
public class SabControllerTest
|
|
{
|
|
[Test]
|
|
public void AddByUrlSuccess()
|
|
{
|
|
//Setup
|
|
string sabnzbdInfo = "192.168.5.55:2222";
|
|
string apikey = "5c770e3197e4fe763423ee7c392c25d1";
|
|
string username = "admin";
|
|
string password = "pass";
|
|
string priority = "0";
|
|
|
|
var config = new Mock<IConfigProvider>();
|
|
config.Setup(c => c.GetValue("SabnzbdInfo", String.Empty, false)).Returns(sabnzbdInfo);
|
|
config.Setup(c => c.GetValue("ApiKey", String.Empty, false)).Returns(apikey);
|
|
config.Setup(c => c.GetValue("Username", String.Empty, false)).Returns(username);
|
|
config.Setup(c => c.GetValue("Password", String.Empty, false)).Returns(password);
|
|
config.Setup(c => c.GetValue("Priority", String.Empty, false)).Returns(priority);
|
|
|
|
var http = new Mock<IHttpProvider>();
|
|
http.Setup(s => s.DownloadString("http://192.168.5.55:2222/sabnzbd/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");
|
|
|
|
var target = new SabProvider(config.Object, http.Object);
|
|
|
|
//Act
|
|
bool result = target.AddByUrl("http://www.nzbclub.com/nzb_download.aspx?mid=1950232", "This is an Nzb");
|
|
|
|
//Assert
|
|
Assert.AreEqual(true, result);
|
|
}
|
|
|
|
[Test]
|
|
public void AddByUrlError()
|
|
{
|
|
//Setup
|
|
string sabnzbdInfo = "192.168.5.55:2222";
|
|
string apikey = "5c770e3197e4fe763423ee7c392c25d1";
|
|
string username = "admin";
|
|
string password = "pass";
|
|
string priority = "0";
|
|
|
|
var config = new Mock<IConfigProvider>();
|
|
config.Setup(c => c.GetValue("SabnzbdInfo", String.Empty, false)).Returns(sabnzbdInfo);
|
|
config.Setup(c => c.GetValue("ApiKey", String.Empty, false)).Returns(apikey);
|
|
config.Setup(c => c.GetValue("Username", String.Empty, false)).Returns(username);
|
|
config.Setup(c => c.GetValue("Password", String.Empty, false)).Returns(password);
|
|
config.Setup(c => c.GetValue("Priority", String.Empty, false)).Returns(priority);
|
|
|
|
var http = new Mock<IHttpProvider>();
|
|
http.Setup(s => s.DownloadString("http://192.168.5.55:2222/sabnzbd/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");
|
|
|
|
var target = new SabProvider(config.Object, http.Object);
|
|
|
|
//Act
|
|
bool result = target.AddByUrl("http://www.nzbclub.com/nzb_download.aspx?mid=1950232", "This is an Nzb");
|
|
|
|
//Assert
|
|
Assert.AreEqual(false, result);
|
|
}
|
|
|
|
[Test]
|
|
public void IsInQueue_True()
|
|
{
|
|
//Setup
|
|
string sabnzbdInfo = "192.168.5.55:2222";
|
|
string apikey = "5c770e3197e4fe763423ee7c392c25d1";
|
|
string username = "admin";
|
|
string password = "pass";
|
|
string priority = "0";
|
|
|
|
var config = new Mock<IConfigProvider>();
|
|
config.Setup(c => c.GetValue("SabnzbdInfo", String.Empty, false)).Returns(sabnzbdInfo);
|
|
config.Setup(c => c.GetValue("ApiKey", String.Empty, false)).Returns(apikey);
|
|
config.Setup(c => c.GetValue("Username", String.Empty, false)).Returns(username);
|
|
config.Setup(c => c.GetValue("Password", String.Empty, false)).Returns(password);
|
|
config.Setup(c => c.GetValue("Priority", String.Empty, false)).Returns(priority);
|
|
|
|
var http = new Mock<IHttpProvider>();
|
|
http.Setup(
|
|
s =>
|
|
s.DownloadString(
|
|
"http://192.168.5.55:2222/sabnzbd/api?mode=queue&output=xml&apikey=5c770e3197e4fe763423ee7c392c25d1&ma_username=admin&ma_password=pass"))
|
|
.Returns(new StreamReader(@".\Files\Queue.xml").ReadToEnd());
|
|
|
|
var target = new SabProvider(config.Object, http.Object);
|
|
|
|
//Act
|
|
bool result = target.IsInQueue("Ubuntu Test");
|
|
|
|
//Assert
|
|
Assert.AreEqual(true, result);
|
|
}
|
|
|
|
[Test]
|
|
public void IsInQueue_False_Empty()
|
|
{
|
|
//Setup
|
|
string sabnzbdInfo = "192.168.5.55:2222";
|
|
string apikey = "5c770e3197e4fe763423ee7c392c25d1";
|
|
string username = "admin";
|
|
string password = "pass";
|
|
string priority = "0";
|
|
|
|
var config = new Mock<IConfigProvider>();
|
|
config.Setup(c => c.GetValue("SabnzbdInfo", String.Empty, false)).Returns(sabnzbdInfo);
|
|
config.Setup(c => c.GetValue("ApiKey", String.Empty, false)).Returns(apikey);
|
|
config.Setup(c => c.GetValue("Username", String.Empty, false)).Returns(username);
|
|
config.Setup(c => c.GetValue("Password", String.Empty, false)).Returns(password);
|
|
config.Setup(c => c.GetValue("Priority", String.Empty, false)).Returns(priority);
|
|
|
|
var http = new Mock<IHttpProvider>();
|
|
http.Setup(
|
|
s =>
|
|
s.DownloadString(
|
|
"http://192.168.5.55:2222/sabnzbd/api?mode=queue&output=xml&apikey=5c770e3197e4fe763423ee7c392c25d1&ma_username=admin&ma_password=pass"))
|
|
.Returns(new StreamReader(@".\Files\QueueEmpty.xml").ReadToEnd());
|
|
|
|
var target = new SabProvider(config.Object, http.Object);
|
|
|
|
//Act
|
|
bool result = target.IsInQueue(String.Empty);
|
|
|
|
//Assert
|
|
Assert.AreEqual(false, result);
|
|
}
|
|
|
|
[Test]
|
|
public void IsInQueue_False_Error()
|
|
{
|
|
//Setup
|
|
string sabnzbdInfo = "192.168.5.55:2222";
|
|
string apikey = "5c770e3197e4fe763423ee7c392c25d1";
|
|
string username = "admin";
|
|
string password = "pass";
|
|
string priority = "0";
|
|
|
|
var config = new Mock<IConfigProvider>();
|
|
config.Setup(c => c.GetValue("SabnzbdInfo", String.Empty, false)).Returns(sabnzbdInfo);
|
|
config.Setup(c => c.GetValue("ApiKey", String.Empty, false)).Returns(apikey);
|
|
config.Setup(c => c.GetValue("Username", String.Empty, false)).Returns(username);
|
|
config.Setup(c => c.GetValue("Password", String.Empty, false)).Returns(password);
|
|
config.Setup(c => c.GetValue("Priority", String.Empty, false)).Returns(priority);
|
|
|
|
var http = new Mock<IHttpProvider>();
|
|
http.Setup(
|
|
s =>
|
|
s.DownloadString(
|
|
"http://192.168.5.55:2222/sabnzbd/api?mode=queue&output=xml&apikey=5c770e3197e4fe763423ee7c392c25d1&ma_username=admin&ma_password=pass"))
|
|
.Returns(new StreamReader(@".\Files\QueueError.xml").ReadToEnd());
|
|
|
|
var target = new SabProvider(config.Object, http.Object);
|
|
|
|
//Act
|
|
bool result = target.IsInQueue(String.Empty);
|
|
|
|
//Assert
|
|
Assert.AreEqual(false, result);
|
|
}
|
|
}
|
|
}
|