public void GetTodos() { // Arrange var client = new ApiService(); string token = null; mvcasgateway.Api.Model.GetToDoResponse response = null; try { token = client.Login("*****@*****.**", "abcd1234"); } catch (Exception ex) { mvcasgateway.Api.Client.ApiException apiException = (mvcasgateway.Api.Client.ApiException)ex; } // Act try { response = client.GetTodos("Bearer " + token); } catch (Exception ex) { mvcasgateway.Api.Client.ApiException apiException = (mvcasgateway.Api.Client.ApiException)ex; } // Assert Assert.IsNotNull(token); Assert.IsNotNull(response); }
public void CreateTodo() { // Arrange var client = new ApiService(); string guid = Guid.NewGuid().ToString().Replace("-", ""); string token = null; bool inputValidationTestPassed = true; mvcasgateway.Api.Model.GetToDoResponse response = null; try { token = client.Login("*****@*****.**", "abcd1234"); } catch (Exception ex) { mvcasgateway.Api.Client.ApiException apiException = (mvcasgateway.Api.Client.ApiException)ex; } // Act //username length exceed 50 try { client.CreateTodo("Bearer " + token, "012345678901234567890123456789012345678901234567890123456789"); inputValidationTestPassed = false; } catch (Exception ex) { mvcasgateway.Api.Client.ApiException apiException = (mvcasgateway.Api.Client.ApiException)ex; } //valid try { client.CreateTodo("Bearer " + token, guid); } catch (Exception ex) { mvcasgateway.Api.Client.ApiException apiException = (mvcasgateway.Api.Client.ApiException)ex; inputValidationTestPassed = false; } // Assert Assert.IsNotNull(token); Assert.IsTrue(inputValidationTestPassed); }