Created
September 30, 2020 00:21
-
-
Save oguzhancagliyan/f90aa6db0b97027aacb490b274dc695f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Collection(nameof(ApiTestCollection))] | |
public class MovieScenarios : BaseScenario | |
{ | |
public MovieScenarios(TestServerFixture testServerFixture) : base(testServerFixture) | |
{ | |
} | |
[Fact] | |
public async Task AddMovie_Should_Return_400_From_ServiceValidation() | |
{ | |
AddMovieRequestViewModel model = new AddMovieRequestViewModel(); | |
var response = await HttpClient.PostAsync(requestUri: MovieRoutes.Root, model: model); | |
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode); | |
} | |
[Fact] | |
public async Task AddMovie_Should_Return_200() | |
{ | |
var requestViewModel = new AddMovieRequestViewModel | |
{ | |
DirectorId = TestConstants.GetDirectorId(), | |
MovieName = "Terminator" | |
}; | |
var response = await HttpClient.PostAsync(MovieRoutes.Root, requestViewModel); | |
var responseModel = await response.Content.GetAsync<AddMovieResponseViewModel>(); | |
Assert.Equal(HttpStatusCode.OK, response.StatusCode); | |
Assert.True(await CheckMovieByMovieIdAsync(responseModel.MovieId)); | |
} | |
[Fact] | |
public async Task GetMovie_Should_Return_400() | |
{ | |
var response = await HttpClient.GetAsync(MovieRoutes.GetMovieById(Guid.Empty)); | |
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode); | |
} | |
[Fact] | |
public async Task GetMovie_Should_Return_404() | |
{ | |
var response = await HttpClient.GetAsync(MovieRoutes.GetMovieById(Guid.NewGuid())); | |
Assert.Equal(HttpStatusCode.NotFound, response.StatusCode); | |
} | |
[Fact] | |
public async Task GetPostById_Should_Return_200() | |
{ | |
var response = await HttpClient.GetAsync(MovieRoutes.GetMovieById(TestConstants.GetMovieId())); | |
GetMovieResponseViewModel responseModel = await response.Content.GetAsync<GetMovieResponseViewModel>(); | |
Assert.Equal(HttpStatusCode.OK, response.StatusCode); | |
Assert.Equal(responseModel.MovieId, TestConstants.GetMovieId()); | |
} | |
[Fact] | |
public async Task CommentMovie_Should_Return_400() | |
{ | |
CommentMovieRequestModel model = new CommentMovieRequestModel | |
{ | |
MovieId = TestConstants.GetMovieId() | |
}; | |
var response = await HttpClient.PostAsync(MovieRoutes.CommentMovie(), model); | |
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode); | |
} | |
[Fact] | |
public async Task CommentMovie_Should_Return_200() | |
{ | |
CommentMovieRequestModel model = new CommentMovieRequestModel | |
{ | |
MovieId = TestConstants.GetMovieId(), | |
Comment = "Great Movie!" | |
}; | |
var response = await HttpClient.PostAsync(MovieRoutes.CommentMovie(), model); | |
Assert.Equal(HttpStatusCode.OK, response.StatusCode); | |
Assert.True(await IsItemInQueueAsync(TestConstants.GetMovieId())); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment