commit
fe1aab034e
@ -1,28 +0,0 @@
|
||||
{
|
||||
"name": "Development Jellyfin Server - FFmpeg",
|
||||
"image":"mcr.microsoft.com/devcontainers/dotnet:9.0-jammy",
|
||||
// restores nuget packages, installs the dotnet workloads and installs the dev https certificate
|
||||
"postStartCommand": "dotnet restore; dotnet workload update; dotnet dev-certs https --trust; sudo bash \"./.devcontainer/Dev - Server Ffmpeg/install-ffmpeg.sh\"",
|
||||
// reads the extensions list and installs them
|
||||
"postAttachCommand": "cat .vscode/extensions.json | jq -r .recommendations[] | xargs -n 1 code --install-extension",
|
||||
"features": {
|
||||
"ghcr.io/devcontainers/features/dotnet:2": {
|
||||
"version": "none",
|
||||
"dotnetRuntimeVersions": "9.0",
|
||||
"aspNetCoreRuntimeVersions": "9.0"
|
||||
},
|
||||
"ghcr.io/devcontainers-contrib/features/apt-packages:1": {
|
||||
"preserve_apt_list": false,
|
||||
"packages": ["libfontconfig1"]
|
||||
},
|
||||
"ghcr.io/devcontainers/features/docker-in-docker:2": {
|
||||
"dockerDashComposeVersion": "v2"
|
||||
},
|
||||
"ghcr.io/devcontainers/features/github-cli:1": {},
|
||||
"ghcr.io/eitsupi/devcontainer-features/jq-likes:2": {}
|
||||
},
|
||||
"hostRequirements": {
|
||||
"memory": "8gb",
|
||||
"cpus": 4
|
||||
}
|
||||
}
|
@ -1,12 +1,13 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"recommendations": [
|
||||
"ms-dotnettools.csharp",
|
||||
"editorconfig.editorconfig",
|
||||
"github.vscode-github-actions",
|
||||
"ms-dotnettools.vscode-dotnet-runtime",
|
||||
"ms-dotnettools.csdevkit"
|
||||
],
|
||||
"unwantedRecommendations": [
|
||||
"ms-dotnettools.csdevkit",
|
||||
"alexcvzz.vscode-sqlite"
|
||||
],
|
||||
"unwantedRecommendations": [
|
||||
|
||||
]
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,28 @@
|
||||
namespace MediaBrowser.Model.Tasks
|
||||
{
|
||||
/// <summary>
|
||||
/// Enum TaskTriggerInfoType.
|
||||
/// </summary>
|
||||
public enum TaskTriggerInfoType
|
||||
{
|
||||
/// <summary>
|
||||
/// The daily trigger.
|
||||
/// </summary>
|
||||
DailyTrigger,
|
||||
|
||||
/// <summary>
|
||||
/// The weekly trigger.
|
||||
/// </summary>
|
||||
WeeklyTrigger,
|
||||
|
||||
/// <summary>
|
||||
/// The interval trigger.
|
||||
/// </summary>
|
||||
IntervalTrigger,
|
||||
|
||||
/// <summary>
|
||||
/// The startup trigger.
|
||||
/// </summary>
|
||||
StartupTrigger
|
||||
}
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
using System;
|
||||
using Jellyfin.LiveTv.Configuration;
|
||||
using Jellyfin.LiveTv.Listings;
|
||||
using MediaBrowser.Common.Configuration;
|
||||
using MediaBrowser.Controller.LiveTv;
|
||||
using MediaBrowser.Model.LiveTv;
|
||||
using MediaBrowser.Model.Tasks;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Moq;
|
||||
using Xunit;
|
||||
|
||||
namespace Jellyfin.LiveTv.Tests.Listings;
|
||||
|
||||
public class ListingsManagerTests
|
||||
{
|
||||
private readonly IConfigurationManager _config;
|
||||
private readonly IListingsProvider[] _listingsProviders;
|
||||
private readonly ILogger<ListingsManager> _logger;
|
||||
private readonly ITaskManager _taskManager;
|
||||
private readonly ITunerHostManager _tunerHostManager;
|
||||
|
||||
public ListingsManagerTests()
|
||||
{
|
||||
_logger = Mock.Of<ILogger<ListingsManager>>();
|
||||
_config = Mock.Of<IConfigurationManager>();
|
||||
_taskManager = Mock.Of<ITaskManager>();
|
||||
_tunerHostManager = Mock.Of<ITunerHostManager>();
|
||||
_listingsProviders = new[] { Mock.Of<IListingsProvider>() };
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void DeleteListingsProvider_DeletesProvider()
|
||||
{
|
||||
// Arrange
|
||||
var id = "MockId";
|
||||
var manager = new ListingsManager(_logger, _config, _taskManager, _tunerHostManager, _listingsProviders);
|
||||
|
||||
Mock.Get(_config)
|
||||
.Setup(x => x.GetConfiguration(It.IsAny<string>()))
|
||||
.Returns(new LiveTvOptions { ListingProviders = [new ListingsProviderInfo { Id = id }] });
|
||||
|
||||
// Act
|
||||
manager.DeleteListingsProvider(id);
|
||||
|
||||
// Assert
|
||||
Assert.DoesNotContain(
|
||||
_config.GetLiveTvConfiguration().ListingProviders,
|
||||
p => p.Id.Equals(id, StringComparison.Ordinal));
|
||||
}
|
||||
}
|
Loading…
Reference in new issue