示例#1
0
        public void TestAddingListOfSongs()
        {
            EZPlaylist playlist = new EZPlaylist("My Awesome Playlist");
            MediaLibrary lib = new MediaLibrary();
            if (lib.Songs.Count > 1)
            {
                List<SongInfo> list = new List<SongInfo>();

                Song song = lib.Songs[0];
                SongInfo si1 = new SongInfo(song.Artist.Name, song.Album.Name, song.Name, song.Duration, song.TrackNumber);
                list.Add(si1);

                song = lib.Songs[1];
                SongInfo si2 = new SongInfo(song.Artist.Name, song.Album.Name, song.Name, song.Duration, song.TrackNumber);
                list.Add(si2);

                playlist.AddList(list.AsReadOnly());

                Assert.IsTrue(playlist.Count == 2);
                Assert.IsTrue(playlist.Songs.Contains(si1));
                Assert.IsTrue(playlist.Songs.Contains(si2));
            }
            else
            {
                Assert.Fail("Can't test adding a song because there are no songs to add or there is only one song.");
            }
        }
示例#2
0
 public void TestAddingSong()
 {
     EZPlaylist playlist = new EZPlaylist("My Awesome Playlist");
     MediaLibrary lib = new MediaLibrary();
     if (lib.Songs.Count > 0)
     {
         Song song = lib.Songs[0];
         SongInfo si = new SongInfo(song.Artist.Name, song.Album.Name, song.Name, song.Duration, song.TrackNumber);
         playlist.Add(si);
         Assert.IsTrue(playlist.Count == 1);
         Assert.IsTrue(playlist.Songs.Contains(si));
     }
     else
     {
         Assert.Fail("Can't test adding a song because there are no songs to add.");
     }
 }
示例#3
0
        public void TestCreatingPlaylistOfEntireLibrary()
        {
            EZPlaylist playlist = new EZPlaylist("My Awesome Playlist");
            MediaLibrary lib = new MediaLibrary();
            List<SongInfo> SIlist = new List<SongInfo>();
            if (lib.Songs.Count > 0)
            {
                foreach (Song song in lib.Songs)
                {
                    SongInfo si = new SongInfo(song.Artist.Name, song.Album.Name, song.Name, song.Duration, song.TrackNumber);
                    playlist.Add(si);
                    SIlist.Add(si);
                }

                playlist.SavePlaylist();
                playlist.Clear();

                playlist = new EZPlaylist();
                playlist.ReadFromFile("My Awesome Playlist");
                foreach (SongInfo si in SIlist)
                {
                    Assert.IsTrue(playlist.Contains(si));
                }
                Assert.IsTrue(playlist.Count == SIlist.Count);
                Assert.IsTrue(playlist.Name == "My Awesome Playlist");
            }
            else
            {
                Assert.Fail("Can't test adding a song because there are no songs to add.");
            }
        }
示例#4
0
        public void TestInitializationSanitation()
        {
            //Playlists can only be named with chars A-Z, a-z, 0-9, and the chars in this string "! , . _ = - ( ) & % $ # @"
            EZPlaylist play = new EZPlaylist("YUP!");
            Assert.IsTrue(play.Name == "YUP!");

            play = new EZPlaylist("YUP.");
            Assert.IsTrue(play.Name == "YUP.");

            play = new EZPlaylist("YUP_");
            Assert.IsTrue(play.Name == "YUP_");

            play = new EZPlaylist("YUP8922");
            Assert.IsTrue(play.Name == "YUP8922");

            play = new EZPlaylist("YUP*");
            Assert.IsTrue(play.Name == "YUP");

            play = new EZPlaylist("YUP/");
            Assert.IsTrue(play.Name == "YUP");

            play = new EZPlaylist("YUP=");
            Assert.IsTrue(play.Name == "YUP=");

            play = new EZPlaylist("YUP,-()&%$#@");
            Assert.IsTrue(play.Name == "YUP,-()&%$#@");

            //Playlist names can only be 25 characters long
            play = new EZPlaylist("YUPYUPYUPYUPYUPYUPYUPYUPYUP");
            Assert.IsTrue(play.Name == "YUPYUPYUPYUPYUPYUPYUPYUPY");
        }
示例#5
0
 public void TestInitialization()
 {
     EZPlaylist play = new EZPlaylist("YUP");
     Assert.IsTrue(play.Name == "YUP");
 }
示例#6
0
        public void TestGettingTwoCopiesOfSameSong()
        {
            EZPlaylist playlist = new EZPlaylist("My Awesome Playlist");
            MediaLibrary lib = new MediaLibrary();

            if (lib.Songs.Count > 0)
            {
                for(int i = 0; i < lib.Songs.Count; i++)
                {
                    if (lib.Songs[i].Artist.Name == "The Doors")
                    {
                        List<Song> thedoors = new List<Song>();
                        foreach (Song song in lib.Songs)
                        {
                            if (song.Artist.Name == "The Doors")
                                thedoors.Add(song);
                        }
                        if(thedoors[0].GetHashCode() == thedoors[1].GetHashCode())
                            System.Diagnostics.Debug.WriteLine(thedoors.Count);
                    }
                }
            }
            else
            {
                Assert.Fail("Can't test adding a song because there are no songs to add.");
            }
        }
示例#7
0
        public void TestDeletingPlaylistFile()
        {
            EZPlaylist playlist = new EZPlaylist("YUP");
            playlist.SavePlaylist(); //creates "YUP.xml"
            playlist.Clear();

            playlist.ReadFromFile("YUP"); //reading from "YUP.xml" confirming that it exists
            playlist.DeletePlaylist();

            playlist = new EZPlaylist("NOPE");
            playlist.ReadFromFile("YUP"); //If "YUP" exists, playlist should be named "YUP"
            Assert.IsTrue(playlist.Name == "NOPE"); //Since YUP does not exist, playlist's name is still NOPE
        }