Migrate remaining legacy operator workflows
This commit is contained in:
@@ -18,6 +18,7 @@ public sealed class PlayoutOptionsLoaderTests
|
||||
"MBN_STOCK_PLAYOUT_LEGACY_BACKGROUND_ASSET",
|
||||
"MBN_STOCK_PLAYOUT_LEGACY_BACKGROUND_VIDEO_LOOP_COUNT",
|
||||
"MBN_STOCK_PLAYOUT_LEGACY_BACKGROUND_VIDEO_LOOP_INFINITE",
|
||||
"MBN_STOCK_PLAYOUT_LEGACY_BACKGROUND_DIRECTORY",
|
||||
"MBN_STOCK_PLAYOUT_SCENE_DIRECTORY",
|
||||
"MBN_STOCK_PLAYOUT_TEST_WINDOW_TITLE_PATTERN",
|
||||
"MBN_STOCK_PLAYOUT_QUEUE_CAPACITY",
|
||||
@@ -53,6 +54,7 @@ public sealed class PlayoutOptionsLoaderTests
|
||||
Assert.Null(options.LegacySceneBackgroundAssetPath);
|
||||
Assert.Equal(2004, options.LegacySceneBackgroundVideoLoopCount);
|
||||
Assert.True(options.LegacySceneBackgroundVideoLoopInfinite);
|
||||
Assert.Null(options.LegacyBackgroundDirectory);
|
||||
Assert.Empty(options.TestSceneAllowlist);
|
||||
Assert.False(options.TrustedLiveOutputEnabled);
|
||||
Assert.True(options.ReconnectEnabled);
|
||||
@@ -74,6 +76,7 @@ public sealed class PlayoutOptionsLoaderTests
|
||||
.Set("MBN_STOCK_PLAYOUT_LEGACY_BACKGROUND_ASSET", "Video\\studio.vrv")
|
||||
.Set("MBN_STOCK_PLAYOUT_LEGACY_BACKGROUND_VIDEO_LOOP_COUNT", "2004")
|
||||
.Set("MBN_STOCK_PLAYOUT_LEGACY_BACKGROUND_VIDEO_LOOP_INFINITE", "false")
|
||||
.Set("MBN_STOCK_PLAYOUT_LEGACY_BACKGROUND_DIRECTORY", "C:\\env-backgrounds")
|
||||
.Set("MBN_STOCK_PLAYOUT_SCENE_DIRECTORY", "C:\\env-scenes")
|
||||
.Set("MBN_STOCK_PLAYOUT_TEST_WINDOW_TITLE_PATTERN", "ENV TEST")
|
||||
.Set("MBN_STOCK_PLAYOUT_QUEUE_CAPACITY", "14")
|
||||
@@ -125,6 +128,7 @@ public sealed class PlayoutOptionsLoaderTests
|
||||
Assert.Equal("Video\\studio.vrv", options.LegacySceneBackgroundAssetPath);
|
||||
Assert.Equal(2004, options.LegacySceneBackgroundVideoLoopCount);
|
||||
Assert.False(options.LegacySceneBackgroundVideoLoopInfinite);
|
||||
Assert.Equal("C:\\env-backgrounds", options.LegacyBackgroundDirectory);
|
||||
Assert.Equal("C:\\env-scenes", options.SceneDirectory);
|
||||
Assert.Equal("ENV TEST", options.TestProcessWindowTitlePattern);
|
||||
Assert.Equal(14, options.QueueCapacity);
|
||||
|
||||
Reference in New Issue
Block a user