mirror of https://github.com/lidarr/Lidarr
added ApplicationUpdateCommand
This commit is contained in:
parent
ecce355ebf
commit
0c3e53458f
|
@ -47,7 +47,7 @@ namespace NzbDrone.Core.Test.UpdateTests
|
|||
{
|
||||
Mocker.GetMock<IDiskProvider>().Setup(c => c.FolderExists(_sandboxFolder)).Returns(true);
|
||||
|
||||
Subject.Execute(new CheckForUpdateCommand());
|
||||
Subject.Execute(new ApplicationUpdateCommand());
|
||||
|
||||
Mocker.GetMock<IDiskProvider>().Verify(c => c.DeleteFolder(_sandboxFolder, true));
|
||||
}
|
||||
|
@ -57,7 +57,7 @@ namespace NzbDrone.Core.Test.UpdateTests
|
|||
{
|
||||
Mocker.GetMock<IDiskProvider>().Setup(c => c.FolderExists(_sandboxFolder)).Returns(false);
|
||||
|
||||
Subject.Execute(new CheckForUpdateCommand());
|
||||
Subject.Execute(new ApplicationUpdateCommand());
|
||||
|
||||
|
||||
Mocker.GetMock<IDiskProvider>().Verify(c => c.DeleteFolder(_sandboxFolder, true), Times.Never());
|
||||
|
@ -69,7 +69,7 @@ namespace NzbDrone.Core.Test.UpdateTests
|
|||
{
|
||||
var updateArchive = Path.Combine(_sandboxFolder, _updatePackage.FileName);
|
||||
|
||||
Subject.Execute(new CheckForUpdateCommand());
|
||||
Subject.Execute(new ApplicationUpdateCommand());
|
||||
|
||||
|
||||
Mocker.GetMock<IHttpProvider>().Verify(c => c.DownloadFile(_updatePackage.Url, updateArchive));
|
||||
|
@ -80,7 +80,7 @@ namespace NzbDrone.Core.Test.UpdateTests
|
|||
{
|
||||
var updateArchive = Path.Combine(_sandboxFolder, _updatePackage.FileName);
|
||||
|
||||
Subject.Execute(new CheckForUpdateCommand());
|
||||
Subject.Execute(new ApplicationUpdateCommand());
|
||||
|
||||
|
||||
Mocker.GetMock<ArchiveProvider>().Verify(c => c.ExtractArchive(updateArchive, _sandboxFolder));
|
||||
|
@ -91,7 +91,7 @@ namespace NzbDrone.Core.Test.UpdateTests
|
|||
{
|
||||
var updateClientFolder = Mocker.GetMock<IEnvironmentProvider>().Object.GetUpdateClientFolder();
|
||||
|
||||
Subject.Execute(new CheckForUpdateCommand());
|
||||
Subject.Execute(new ApplicationUpdateCommand());
|
||||
|
||||
|
||||
|
||||
|
@ -105,7 +105,7 @@ namespace NzbDrone.Core.Test.UpdateTests
|
|||
|
||||
|
||||
|
||||
Subject.Execute(new CheckForUpdateCommand());
|
||||
Subject.Execute(new ApplicationUpdateCommand());
|
||||
|
||||
|
||||
|
||||
|
@ -121,7 +121,7 @@ namespace NzbDrone.Core.Test.UpdateTests
|
|||
{
|
||||
Mocker.GetMock<IUpdatePackageProvider>().Setup(c => c.GetLatestUpdate()).Returns<UpdatePackage>(null);
|
||||
|
||||
Subject.Execute(new CheckForUpdateCommand());
|
||||
Subject.Execute(new ApplicationUpdateCommand());
|
||||
|
||||
|
||||
ExceptionVerification.AssertNoUnexcpectedLogs();
|
||||
|
@ -140,7 +140,7 @@ namespace NzbDrone.Core.Test.UpdateTests
|
|||
Mocker.Resolve<DiskProvider>();
|
||||
Mocker.Resolve<ArchiveProvider>();
|
||||
|
||||
Subject.Execute(new CheckForUpdateCommand());
|
||||
Subject.Execute(new ApplicationUpdateCommand());
|
||||
|
||||
|
||||
updateSubFolder.Refresh();
|
||||
|
|
|
@ -505,7 +505,7 @@
|
|||
<Compile Include="Tv\Series.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Tv\SeriesStatusType.cs" />
|
||||
<Compile Include="Update\Commands\CheckForUpdateCommand.cs" />
|
||||
<Compile Include="Update\Commands\ApplicationUpdateCommand.cs" />
|
||||
<Compile Include="Update\UpdatePackageProvider.cs" />
|
||||
<Compile Include="Update\UpdatePackage.cs" />
|
||||
<Compile Include="Update\UpdateService.cs" />
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
namespace NzbDrone.Core.Update.Commands
|
||||
{
|
||||
public class CheckForUpdateCommand : ICommand
|
||||
public class ApplicationUpdateCommand : ICommand
|
||||
{
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue