Advertisement
Nil000

passtote

Feb 20th, 2024
1,014
2
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.59 KB | None | 2 0
  1. using Microsoft.VisualStudio.TestPlatform.Common;
  2. using Newtonsoft.Json;
  3. using NUnit.Framework;
  4. using System.Net;
  5. using System.Text;
  6. [Binding]
  7. public class FirstFeatureSteps
  8. {
  9.     private readonly ScenarioContext _context;
  10.     private HttpResponseMessage _response;
  11.  
  12.  
  13.     public FirstFeatureSteps(ScenarioContext context)
  14.     {  
  15.         _context = context;
  16.     }
  17.  
  18.     [Given(@"I have generated request data for a new user with name ""(.*)"" and email ""(.*)""")]
  19.     public void GivenIhaveGeneratedRequestDataForANewUserWithNameAndEmail(string name, string email)
  20.     {
  21.         var requestData = new UserBuilder()
  22.             .WithName(name)
  23.             .WithEmail(email)
  24.             .BuildAsJson();
  25.         _context.Set(requestData, "requestData");
  26.     }
  27.  
  28.     [Given(@"I have generated request data for a new user with name ""(.*)"" but without an email")]
  29.     public void GivenIHaveGeneratedRequestDataForAnewUserWithNameButWithoutAnEmail(string name)
  30.     {
  31.         var requestData = new UserBuilder()
  32.             .WithName(name)
  33.             .WithoutEmail()
  34.             .BuildAsJson();
  35.         _context.Set(requestData, "requestData");
  36.     }
  37.  
  38.     [When(@"I submit the request to the user registration endpoint")]
  39.     public async Task WhenISubmitTheRequestToTheUserRegistrationEndpoint()
  40.     {
  41.         var client = new HttpClient();
  42.         var requestData = _context.Get<string>("requestData");
  43.         _response = await client.PostAsync("http://localhost:5184/api/user",
  44.             new StringContent(requestData, Encoding.UTF8, "application/json"));
  45.         _context.Set(_response, "apiResponse");
  46.         //check response
  47.         if (!_response.IsSuccessStatusCode)
  48.         {
  49.             Console.WriteLine($"API call failed with status code: {_response.StatusCode}");
  50.             return;
  51.         }
  52.     }
  53.  
  54.     [Then(@"The response should be a success")]
  55.     public async Task ThenTheReponseShouldBeASuccess()    
  56.     {
  57.         var response = _context.Get<HttpResponseMessage>("apiResponse");
  58.  
  59.         //assert response has status 200
  60.         Assert.IsTrue(response.IsSuccessStatusCode, $"Expected a success response but got {response.StatusCode}.");
  61.  
  62.         //read response content as a string
  63.         var responseContent = await response.Content.ReadAsStringAsync();
  64.  
  65.         //validate content against Json schema
  66.         var schemaFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Schemas", "FirstFeature.json");
  67.         bool isValid = await SchemaValidator.IsValidJsonPayloadAgainstSchema(responseContent, schemaFilePath);
  68.         //assert response matches schema
  69.         Assert.IsTrue(isValid, "The response does not match the schema");
  70.     }
  71.  
  72.     [Then(@"The response should indicate a failure")]
  73.     public async Task ThenTheResponseShouldIndicateAFailure()
  74.     {
  75.         var requestData = _context.Get<string>("requestData");
  76.  
  77.         var response = _context.Get<HttpResponseMessage>("apiResponse");
  78.        
  79.         var responseContent = await response.Content.ReadAsStringAsync();
  80.  
  81.         if(string.IsNullOrWhiteSpace(responseContent))
  82.         {
  83.             throw new InvalidOperationException("The response content is empty or null.");
  84.         }
  85.  
  86.         Assert.AreEqual(HttpStatusCode.BadRequest, response.StatusCode, "Expected a BadRequest response.");
  87.  
  88.         dynamic errorResponse = JsonConvert.DeserializeObject<dynamic>(responseContent);
  89.  
  90.         var errorMessage = (string)errorResponse.errors.email[0];
  91.  
  92.         Assert.AreEqual("The Email field is required.", errorMessage, "Expected error message is not present");
  93.     }
  94.  
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement