当前位置: 首页>>代码示例>>C#>>正文


C# MusicClient.SearchAsync方法代码示例

本文整理汇总了C#中MusicClient.SearchAsync方法的典型用法代码示例。如果您正苦于以下问题:C# MusicClient.SearchAsync方法的具体用法?C# MusicClient.SearchAsync怎么用?C# MusicClient.SearchAsync使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在MusicClient的用法示例。


在下文中一共展示了MusicClient.SearchAsync方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: EnsureSearchReturnsItemsForValidSearch

        public async Task EnsureSearchReturnsItemsForValidSearch()
        {
            IMusicClient client = new MusicClient("test", "gb", new MockApiRequestHandler(Resources.search_all));
            ListResponse<MusicItem> result = await client.SearchAsync("lady gaga");
            Assert.IsNotNull(result, "Expected a result");
            Assert.IsNotNull(result.StatusCode, "Expected a status code");
            Assert.IsTrue(result.StatusCode.HasValue, "Expected a status code");
            Assert.AreEqual(HttpStatusCode.OK, result.StatusCode.Value, "Expected a 200 response");
            Assert.IsNotNull(result.Result, "Expected a list of results");
            Assert.IsNull(result.Error, "Expected no error");
            Assert.Greater(result.Result.Count, 0, "Expected more than 0 results");

            foreach (MusicItem item in result.Result)
            {
                Assert.IsFalse(string.IsNullOrEmpty(item.Id), "Expected Id to be populated");
                Assert.IsFalse(string.IsNullOrEmpty(item.Name), "Expected Name to be populated");
                Assert.IsNotNull(item.Thumb100Uri, "Expected a thumbnail uri");
            }
        }
开发者ID:hoangtanduy247,项目名称:wp-api-client,代码行数:19,代码来源:SearchTests.cs

示例2: EnsureAsyncSearchReturnsItems

 public async void EnsureAsyncSearchReturnsItems()
 {
     // Only test happy path, as the MusicClient tests cover the unhappy path
     IMusicClient client = new MusicClient("test", "gb", new MockApiRequestHandler(Resources.search_all));
     ListResponse<MusicItem> result = await client.SearchAsync("test");
     Assert.Greater(result.Result.Count, 0, "Expected more than 0 results");
 }
开发者ID:NaveenSelvaraj,项目名称:wp-api-client,代码行数:7,代码来源:SearchTests.cs

示例3: EnsureSearchForGenreTracksReturnsItems

        public async Task EnsureSearchForGenreTracksReturnsItems()
        {
            IMusicClient client = new MusicClient("test", "gb", new MockApiRequestHandler(Resources.search_all));
            ListResponse<MusicItem> result = await client.SearchAsync(genreId: "Rock", category: Category.Track, orderBy: OrderBy.ReleaseDate, sortOrder: SortOrder.Ascend);
            Assert.IsNotNull(result, "Expected a result");
            Assert.IsNotNull(result.StatusCode, "Expected a status code");
            Assert.IsTrue(result.StatusCode.HasValue, "Expected a status code");
            Assert.AreEqual(HttpStatusCode.OK, result.StatusCode.Value, "Expected a 200 response");
            Assert.IsNotNull(result.Result, "Expected a list of results");
            Assert.IsNull(result.Error, "Expected no error");
            Assert.Greater(result.Result.Count, 0, "Expected more than 0 results");

            foreach (MusicItem item in result.Result)
            {
                Assert.IsFalse(string.IsNullOrEmpty(item.Id), "Expected Id to be populated");
                Assert.IsFalse(string.IsNullOrEmpty(item.Name), "Expected Name to be populated");
                Assert.IsNotNull(item.Thumb100Uri, "Expected a thumbnail uri");
            }
        }
开发者ID:hoangtanduy247,项目名称:wp-api-client,代码行数:19,代码来源:SearchTests.cs

示例4: EnsureSearchThrowsExceptionForNullSearchTermAndGenreId

 public void EnsureSearchThrowsExceptionForNullSearchTermAndGenreId()
 {
     IMusicClient client = new MusicClient("test", "gb", new MockApiRequestHandler(Resources.search_all));
     client.SearchAsync().Wait();
 }
开发者ID:hoangtanduy247,项目名称:wp-api-client,代码行数:5,代码来源:SearchTests.cs

示例5: EnsureSearchReturnsErrorForFailedCall

 public async Task EnsureSearchReturnsErrorForFailedCall()
 {
     IMusicClient client = new MusicClient("test", "gb", new MockApiRequestHandler(FakeResponse.NotFound()));
     ListResponse<MusicItem> result = await client.SearchAsync("green day");
     Assert.IsNotNull(result, "Expected a result");
     Assert.IsNotNull(result.StatusCode, "Expected a status code");
     Assert.IsTrue(result.StatusCode.HasValue, "Expected a status code");
     Assert.AreNotEqual(HttpStatusCode.OK, result.StatusCode.Value, "Expected a non-OK response");
     Assert.IsNotNull(result.Error, "Expected an error");
     Assert.AreEqual(typeof(ApiCallFailedException), result.Error.GetType(), "Expected an ApiCallFailedException");
 }
开发者ID:hoangtanduy247,项目名称:wp-api-client,代码行数:11,代码来源:SearchTests.cs

示例6: EnsureApiNotAvailableExceptionThrownWhenRegionInfoCtorUsedAndCountryIsInvalidForListMethods

        public async Task EnsureApiNotAvailableExceptionThrownWhenRegionInfoCtorUsedAndCountryIsInvalidForListMethods()
        {
            // First test the public constructor...
            MusicClient publicClient = new MusicClient("test");

            // Now test the handling of non-availability...

            // Our REST API will give a 404 response when the country code is not valid, so this test
            // ensures that gets translated into an ApiNotAvailableException when the RegionInfo constructor is used.
            MusicClient client = new MusicClient("test", new MockApiRequestHandler(FakeResponse.NotFound()));
            ListResponse<MusicItem> response = await client.SearchAsync("test");
            Assert.IsNotNull(response.Error, "Expected an Error");
            Assert.AreEqual(typeof(ApiNotAvailableException), response.Error.GetType(), "Expected an ApiNotAvailableException");
        }
开发者ID:hoangtanduy247,项目名称:wp-api-client,代码行数:14,代码来源:MusicClientTests.cs

示例7: EnsureInvalidApiCredentialsExceptionThrownWhenServerGives403ForListMethods

 public async Task EnsureInvalidApiCredentialsExceptionThrownWhenServerGives403ForListMethods()
 {
     MusicClient client = new MusicClient("badkey", "us", new MockApiRequestHandler(FakeResponse.Forbidden()));
     ListResponse<MusicItem> response = await client.SearchAsync("test");
     Assert.IsNotNull(response.Error, "Expected an Error");
     Assert.AreEqual(typeof(InvalidApiCredentialsException), response.Error.GetType(), "Expected an InvalidApiCredentialsException");
 }
开发者ID:hoangtanduy247,项目名称:wp-api-client,代码行数:7,代码来源:MusicClientTests.cs

示例8: EnsureInvalidContentTypeRaisesListResponseWithApiCallFailedException

 public async Task EnsureInvalidContentTypeRaisesListResponseWithApiCallFailedException()
 {
     MusicClient client = new MusicClient("badkey", "us", new MockApiRequestHandler(FakeResponse.Success(Resources.search_all, null)));
     ListResponse<MusicItem> response = await client.SearchAsync("test");
     Assert.IsNotNull(response.Error, "Expected an Error");
     Assert.AreEqual(typeof(ApiCallFailedException), response.Error.GetType(), "Expected an ApiCallFailedException");
 }
开发者ID:ni3bobade,项目名称:.net-sdk,代码行数:7,代码来源:MusicClientTests.cs


注:本文中的MusicClient.SearchAsync方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。