public async void GetUserProfile_ForInvalidToken_ReturnsError() { var uberClient = new UberSandboxClient(AccessTokenType.Client, _clientToken); var response = await uberClient.GetUserProfileAsync(); response.ShouldNotBe(null); response.Data.ShouldBe(null); response.Error.ShouldNotBe(null); }
public async void GetRequestDetails_ForValidParameters_ReturnsError() { var uberClient = new UberSandboxClient(AccessTokenType.Client, _clientToken); var response = await uberClient.GetRequestDetailsAsync("INVALID"); response.ShouldNotBe(null); response.Data.ShouldBe(null); response.Error.ShouldNotBe(null); }
public async void GetUserProfile_ForValidToken_ReturnsUserUserActivity() { var uberClient = new UberSandboxClient(AccessTokenType.Client, _clientToken); var response = await uberClient.GetUserProfileAsync(); response.ShouldNotBe(null); response.Data.ShouldNotBe(null); response.Data.ShouldBeOfType <Promotion>(); }
public async void GetUserActivity_ForInvalidParameters_ReturnsError() { var uberClient = new UberSandboxClient(AccessTokenType.Client, _clientToken); var response = await uberClient.GetUserActivityAsync(0, -1); response.ShouldNotBe(null); response.Data.ShouldBe(null); response.Error.ShouldNotBe(null); }
public async void GetRequestDetails_ForValidParameters_ReturnsRequestDetails() { var uberClient = new UberSandboxClient(AccessTokenType.Client, _clientToken); var allRequests = await uberClient.GetUserActivityAsync(0, 50); var response = await uberClient.GetRequestDetailsAsync(allRequests.Data.History.First().Id); response.ShouldNotBe(null); response.Data.ShouldNotBe(null); response.Data.ShouldBeOfType <RequestDetails>(); }
public async void GetPromotion_ForInvalidParameters_ReturnsError() { var uberClient = new UberSandboxClient(AccessTokenType.Server, _serverToken); var response = await uberClient.GetPromotionAsync( Constants.MelbourneLatitude, Constants.MelbourneLongitude, Constants.SouthPoleLatitude, Constants.SouthPoleLongitude); response.ShouldNotBe(null); response.Data.ShouldBe(null); response.Error.ShouldNotBe(null); }
public async void GetProducts_ForInvalidParameters_ReturnsEmptyList() { var uberClient = new UberSandboxClient(AccessTokenType.Server, _serverToken); var response = await uberClient.GetProductsAsync( Constants.SouthPoleLatitude, Constants.SouthPoleLongitude); response.ShouldNotBe(null); response.Data.ShouldNotBe(null); response.Data.ShouldBeOfType <ProductCollection>(); response.Data.Products.ShouldNotBe(null); response.Data.Products.Count.ShouldBe(0); }
public async void Request_ForInvalidParameters_ReturnsError() { var uberClient = new UberSandboxClient(AccessTokenType.Client, _clientToken); var response = await uberClient.RequestAsync( "INVALID", Constants.MelbourneLatitude, Constants.MelbourneLongitude, Constants.SouthPoleLatitude, Constants.SouthPoleLongitude); response.ShouldNotBe(null); response.Data.ShouldBe(null); response.Error.ShouldNotBe(null); }
public async void Request_ForValidParameters_ReturnsRequest() { var uberClient = new UberSandboxClient(AccessTokenType.Client, _clientToken); var response = await uberClient.RequestAsync( "893b94af-ca9d-4f0f-9201-6d426cedaa5c", Constants.MelbourneLatitude, Constants.MelbourneLongitude, Constants.SorrentoLatitude, Constants.SorrentoLongitude); response.ShouldNotBe(null); response.Data.ShouldNotBe(null); response.Data.ShouldBeOfType <Request>(); }
public async void GetTimeEstimate_ForValidDefaultParameters_ReturnsListOfPriceEstimates() { var uberClient = new UberSandboxClient(AccessTokenType.Server, _serverToken); var response = await uberClient.GetTimeEstimateAsync( Constants.MelbourneLatitude, Constants.MelbourneLongitude); response.ShouldNotBe(null); response.Data.ShouldNotBe(null); response.Data.ShouldBeOfType <TimeEstimateCollection>(); response.Data.TimeEstimates.ShouldNotBe(null); response.Data.TimeEstimates.Count.ShouldBeGreaterThan(0); response.Data.TimeEstimates[0].ProductId.ShouldNotBeNullOrEmpty(); }
public async void GetProducts_ForValidParameters_ReturnsListOfProducts() { var uberClient = new UberSandboxClient(AccessTokenType.Server, _serverToken); var response = await uberClient.GetProductsAsync( Constants.MelbourneLatitude, Constants.MelbourneLongitude); response.ShouldNotBe(null); response.Data.ShouldNotBe(null); response.Data.ShouldBeOfType <ProductCollection>(); response.Data.Products.ShouldNotBe(null); response.Data.Products.Count.ShouldBeGreaterThan(0); response.Data.Products[0].DisplayName.ShouldNotBeNullOrEmpty(); }