using System; using System.Collections.Generic; using Xunit; using Moq; using FluentAssertions; using SpotifyAPI.Web; using System.Threading; namespace Selector.Tests { public class PlayerWatcherTests { public static IEnumerable NowPlayingData => new List { new object[] { new List(){ Helper.CurrentPlayback(Helper.FullTrack("track1", "album1", "artist1")), Helper.CurrentPlayback(Helper.FullTrack("track2", "album2", "artist2")), Helper.CurrentPlayback(Helper.FullTrack("track3", "album3", "artist3")), } } }; [Theory] [MemberData(nameof(NowPlayingData))] public async void NowPlaying(List playing) { var playingQueue = new Queue(playing); var spotMock = new Mock(); var eq = new UriEqual(); spotMock.Setup(s => s.GetCurrentPlayback().Result).Returns(playingQueue.Dequeue); var watcher = new PlayerWatcher(spotMock.Object, eq); for (var i = 0; i < playing.Count; i++) { await watcher.WatchOne(); watcher.Live.Should().Be(playing[i]); } } public static IEnumerable EventsData => new List { // NO CHANGING new object[] { new List(){ Helper.CurrentPlayback(Helper.FullTrack("nochange", "album1", "artist1"), isPlaying: true, context: "context1"), Helper.CurrentPlayback(Helper.FullTrack("nochange", "album1", "artist1"), isPlaying: true, context: "context1"), Helper.CurrentPlayback(Helper.FullTrack("nochange", "album1", "artist1"), isPlaying: true, context: "context1"), }, // to raise new List(){ }, // to not raise new List(){ "ItemChange", "AlbumChange", "ArtistChange", "ContextChange", "PlayingChange", "DeviceChange", "VolumeChange" } }, // TRACK CHANGE new object[] { new List(){ Helper.CurrentPlayback(Helper.FullTrack("trackchange1", "album1", "artist1")), Helper.CurrentPlayback(Helper.FullTrack("trackchange2", "album1", "artist1")) }, // to raise new List(){ "ItemChange" }, // to not raise new List(){ "AlbumChange", "ArtistChange", "ContextChange", "PlayingChange", "DeviceChange", "VolumeChange" } }, // ALBUM CHANGE new object[] { new List(){ Helper.CurrentPlayback(Helper.FullTrack("albumchange", "album1", "artist1")), Helper.CurrentPlayback(Helper.FullTrack("albumchange", "album2", "artist1")) }, // to raise new List(){ "AlbumChange" }, // to not raise new List(){ "ItemChange", "ArtistChange", "ContextChange", "PlayingChange", "DeviceChange", "VolumeChange" } }, // ARTIST CHANGE new object[] { new List(){ Helper.CurrentPlayback(Helper.FullTrack("artistchange", "album1", "artist1")), Helper.CurrentPlayback(Helper.FullTrack("artistchange", "album1", "artist2")) }, // to raise new List(){ "ArtistChange" }, // to not raise new List(){ "ItemChange", "AlbumChange", "ContextChange", "PlayingChange", "DeviceChange", "VolumeChange" } }, // CONTEXT CHANGE new object[] { new List(){ Helper.CurrentPlayback(Helper.FullTrack("contextchange", "album1", "artist1"), context: "context1"), Helper.CurrentPlayback(Helper.FullTrack("contextchange", "album1", "artist1"), context: "context2") }, // to raise new List(){ "ContextChange" }, // to not raise new List(){ "ItemChange", "AlbumChange", "ArtistChange", "PlayingChange", "DeviceChange", "VolumeChange" } }, // PLAYING CHANGE new object[] { new List(){ Helper.CurrentPlayback(Helper.FullTrack("playingchange1", "album1", "artist1"), isPlaying: true, context: "context1"), Helper.CurrentPlayback(Helper.FullTrack("playingchange1", "album1", "artist1"), isPlaying: false, context: "context1") }, // to raise new List(){ "PlayingChange" }, // to not raise new List(){ "ItemChange", "AlbumChange", "ArtistChange", "ContextChange", "DeviceChange", "VolumeChange" } }, // PLAYING CHANGE new object[] { new List(){ Helper.CurrentPlayback(Helper.FullTrack("playingchange2", "album1", "artist1"), isPlaying: false, context: "context1"), Helper.CurrentPlayback(Helper.FullTrack("playingchange2", "album1", "artist1"), isPlaying: true, context: "context1") }, // to raise new List(){ "PlayingChange" }, // to not raise new List(){ "ItemChange", "AlbumChange", "ArtistChange", "ContextChange", "DeviceChange", "VolumeChange" } }, // CONTENT CHANGE new object[] { new List(){ Helper.CurrentPlayback(Helper.FullTrack("contentchange1", "album1", "artist1"), isPlaying: true, context: "context1"), Helper.CurrentPlayback(Helper.FullEpisode("contentchange1", "show1", "pub1"), isPlaying: true, context: "context2") }, // to raise new List(){ "ContentChange", "ContextChange", "ItemChange" }, // to not raise new List(){ "AlbumChange", "ArtistChange", "PlayingChange", "DeviceChange", "VolumeChange" } }, // CONTENT CHANGE new object[] { new List(){ Helper.CurrentPlayback(Helper.FullEpisode("contentchange1", "show1", "pub1"), isPlaying: true, context: "context2"), Helper.CurrentPlayback(Helper.FullTrack("contentchange1", "album1", "artist1"), isPlaying: true, context: "context1") }, // to raise new List(){ "ContentChange", "ContextChange", "ItemChange" }, // to not raise new List(){ "AlbumChange", "ArtistChange", "PlayingChange", "DeviceChange", "VolumeChange" } }, // DEVICE CHANGE new object[] { new List(){ Helper.CurrentPlayback(Helper.FullTrack("devicechange", "album1", "artist1"), device: Helper.Device("dev1")), Helper.CurrentPlayback(Helper.FullTrack("devicechange", "album1", "artist1"), device: Helper.Device("dev2")) }, // to raise new List(){ "DeviceChange" }, // to not raise new List(){ "AlbumChange", "ArtistChange", "PlayingChange", "ContentChange", "ContextChange", "ItemChange", "VolumeChange" } }, // VOLUME CHANGE new object[] { new List(){ Helper.CurrentPlayback(Helper.FullTrack("volumechange", "album1", "artist1"), device: Helper.Device("dev1", volume: 50)), Helper.CurrentPlayback(Helper.FullTrack("volumechange", "album1", "artist1"), device: Helper.Device("dev1", volume: 60)) }, // to raise new List(){ "VolumeChange" }, // to not raise new List(){ "AlbumChange", "ArtistChange", "PlayingChange", "ContentChange", "ContextChange", "ItemChange", "DeviceChange" } }, // // STARTED PLAYBACK // new object[] { new List(){ // null, // Helper.CurrentPlayback(Helper.FullTrack("track1", "album1", "artist1"), isPlaying: true, context: "context1") // }, // // to raise // new List(){ "PlayingChange" }, // // to not raise // new List(){ "AlbumChange", "ArtistChange", "ContentChange", "ContextChange", "ItemChange", "DeviceChange", "VolumeChange" } // }, // // STARTED PLAYBACK // new object[] { new List(){ // Helper.CurrentPlayback(Helper.FullTrack("track1", "album1", "artist1"), isPlaying: true, context: "context1"), // null // }, // // to raise // new List(){ "PlayingChange" }, // // to not raise // new List(){ "AlbumChange", "ArtistChange", "ContentChange", "ContextChange", "ItemChange", "DeviceChange", "VolumeChange" } // } }; [Theory] [MemberData(nameof(EventsData))] public async void Events(List playing, List toRaise, List toNotRaise) { var playingQueue = new Queue(playing); var spotMock = new Mock(); var eq = new UriEqual(); spotMock.Setup( s => s.GetCurrentPlayback().Result ).Returns(playingQueue.Dequeue); var watcher = new PlayerWatcher(spotMock.Object, eq); using var monitoredWatcher = watcher.Monitor(); for (var i = 0; i < playing.Count; i++) { await watcher.WatchOne(); } toRaise.ForEach(r => monitoredWatcher.Should().Raise(r).WithSender(watcher)); toNotRaise.ForEach(r => monitoredWatcher.Should().NotRaise(r)); } // [Fact] // public async void Auth() // { // var spot = new SpotifyClient(""); // var eq = new UriEquality(); // var watch = new PlayerWatcher(spot.Player, eq); // var token = new CancellationTokenSource(); // await watch.Watch(token.Token); // } } }