Updated Slovenian translation
[banshee.git] / src / Libraries / Lastfm / Test.cs
blob105008997d7635d37b25095b04887e7081fb8fd7
1 //
2 // Test.cs
3 //
4 // Authors:
5 // Gabriel Burt <gburt@novell.com>
6 //
7 // Copyright (C) 2008 Novell, Inc.
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 using System;
31 using Lastfm.Data;
33 public class LastfmTest
35 public static void Main (string [] args)
37 DataCore.CachePath = "test_lastfm_cache";
38 DataCore.UserAgent = "Lastfm.dll test";
40 string username = "RJ";
42 LastfmUserData user = new LastfmUserData (username);
44 ProfileEntry prof = user.Profile;
45 //Console.WriteLine ("data url: {0}", prof.DataUrl);
46 Console.WriteLine ("profile url: {0}", user.Profile.Url);
47 Console.WriteLine ("real name: {0}", user.Profile.RealName);
48 Console.WriteLine ("play count: {0}", prof.PlayCount);
49 Console.WriteLine ("gender: {0}", prof.Gender);
50 Console.WriteLine ("age: {0}", prof.Age);
51 Console.WriteLine ("country: {0}", prof.Country);
52 Console.WriteLine ("registered: {0}", prof.Registered);
54 Console.WriteLine ("profile url: {0}", user.Profile.Url);
56 LastfmData<UserTopArtist> top_artists = user.GetTopArtists (TopType.Overall);
57 Console.WriteLine ("\nTop Artists ({0})", top_artists.Count);
58 foreach (UserTopArtist artist in top_artists) {
59 Console.WriteLine ("Artist: {0}\nPlays: {1}", artist.Name, artist.PlayCount);
62 foreach (TopTag tag in user.TopTags) {
63 Console.WriteLine ("top tag: {0}", tag.Name);
65 user.TopTags.Refresh ();
67 System.IO.Directory.Delete ("test_lastfm_cache", true);