public void GetListingsByColorApiKeyInvalidTest() { // ARRANGE using (AutoResetEvent waitEvent = new AutoResetEvent(false)) { ResultEventArgs<Listings> result = null; IListingsService listingsService = new ListingsService(new EtsyContext("InvalidKey")); listingsService.GetListingsByColorCompleted += (s, e) => { result = e; waitEvent.Set(); }; RgbColor testColor = new RgbColor("76B3DF"); // ACT listingsService.GetListingsByColor(testColor, 10, 0, 10, DetailLevel.Low); bool signalled = waitEvent.WaitOne(Constants.WaitTimeout); // ASSERT // check that the event was fired, did not time out Assert.IsTrue(signalled, "Not signalled"); // check the data Assert.IsNotNull(result); // check the data - should fail Assert.IsNotNull(result); Assert.IsNotNull(result.ResultStatus); Assert.IsFalse(result.ResultStatus.Success); Assert.AreEqual(WebExceptionStatus.ProtocolError, result.ResultStatus.WebStatus); } }
public void GetListingsByColorCallTest() { // ARRANGE using (AutoResetEvent waitEvent = new AutoResetEvent(false)) { ResultEventArgs<Listings> result = null; IListingsService listingsService = new ListingsService(new EtsyContext(NetsyData.EtsyApiKey)); listingsService.GetListingsByColorCompleted += (s, e) => { result = e; waitEvent.Set(); }; RgbColor testColor = new RgbColor("76B3DF"); // ACT listingsService.GetListingsByColor(testColor, 10, 0, 10, DetailLevel.Low); bool signalled = waitEvent.WaitOne(Constants.WaitTimeout); // ASSERT // check that the event was fired, did not time out Assert.IsTrue(signalled, "Not signalled"); // check the data Assert.IsNotNull(result); TestHelpers.CheckResultSuccess(result); Assert.IsTrue(result.ResultValue.Count > 1, "No results retreived"); Assert.AreEqual(10, result.ResultValue.Results.Length); Assert.IsNotNull(result.ResultValue.Params); } }
public void GetListingsByColorApiKeyMissingTest() { // ARRANGE ResultEventArgs<Listings> result = null; IListingsService listingsService = new ListingsService(new EtsyContext(string.Empty)); listingsService.GetListingsByColorCompleted += (s, e) => result = e; RgbColor testColor = new RgbColor("76B3DF"); // ACT listingsService.GetListingsByColor(testColor, 10, 0, 10, DetailLevel.Low); // check the data TestHelpers.CheckResultFailure(result); }