Merge pull request 'API_RunePage_ReadMe_UT' (#8) from API_RunePage_ReadMe_UT into master
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
Reviewed-on: #8ApiManager
commit
f0d1451095
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,127 +0,0 @@
|
||||
using ApiLol.Controllers;
|
||||
using ApiLol.Controllers.v2;
|
||||
using DTO;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Logging.Abstractions;
|
||||
using StubLib;
|
||||
|
||||
namespace ApiTests
|
||||
{
|
||||
[TestClass]
|
||||
public class ChampionsControllerTest
|
||||
{
|
||||
private readonly StubData stub;
|
||||
private readonly ChampionsController champs;
|
||||
public ChampionsControllerTest()
|
||||
{
|
||||
stub = new StubData();
|
||||
champs = new ChampionsController(stub, new NullLogger<ChampionsController>());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public async Task TestGetChampions()
|
||||
{
|
||||
//Arrange
|
||||
|
||||
//Act
|
||||
var total = await stub.ChampionsMgr.GetNbItems();
|
||||
var champion = await champs.Get(new PageRequest());
|
||||
|
||||
//Assert
|
||||
var objectResult = champion as OkObjectResult;
|
||||
Assert.IsNotNull(objectResult);
|
||||
|
||||
var champions = objectResult?.Value as IEnumerable<ChampionDto>;
|
||||
Assert.IsNotNull(champions);
|
||||
|
||||
Assert.AreEqual(champions.Count(), total);
|
||||
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public async Task TestPostChampion()
|
||||
{
|
||||
//Arange
|
||||
var ChampionDto = new ChampionDto
|
||||
{
|
||||
Name = "Sylas",
|
||||
Bio = "Good",
|
||||
Class = ChampionClassDto.Tank,
|
||||
Icon = "",
|
||||
Image = new LargeImageDto() { Base64 = "" },
|
||||
Skins = new List<SkinDto>()
|
||||
};
|
||||
|
||||
//Act
|
||||
var championsResult = await champs.Post(ChampionDto);
|
||||
|
||||
//Assert
|
||||
var objectResult = championsResult as CreatedAtActionResult;
|
||||
Assert.IsNotNull(objectResult);
|
||||
|
||||
var champions = objectResult?.Value as ChampionDto;
|
||||
Assert.IsNotNull(champions);
|
||||
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public async Task TestPutChampion()
|
||||
{
|
||||
//Arange
|
||||
var ChampionDto = new ChampionDto
|
||||
{
|
||||
Name = "Sylas",
|
||||
Bio = "Good",
|
||||
Class = ChampionClassDto.Tank,
|
||||
Icon = "",
|
||||
Image = new LargeImageDto() { Base64 = "" },
|
||||
Skins = new List<SkinDto>()
|
||||
};
|
||||
var ChampionDtoPut = new ChampionDto
|
||||
{
|
||||
Name = "Sylas",
|
||||
Bio = "Bad",
|
||||
Class = ChampionClassDto.Tank,
|
||||
Icon = "",
|
||||
Image = new LargeImageDto() { Base64 = "" },
|
||||
Skins = new List<SkinDto>()
|
||||
};
|
||||
|
||||
//Act
|
||||
await champs.Post(ChampionDto);
|
||||
var championsResult = await champs.Put(ChampionDto.Name, ChampionDtoPut);
|
||||
|
||||
//Assert
|
||||
var objectResult = championsResult as OkObjectResult;
|
||||
Assert.IsNotNull(objectResult);
|
||||
|
||||
var champions = objectResult?.Value as ChampionDto;
|
||||
Assert.IsNotNull(champions);
|
||||
|
||||
Assert.AreNotEqual(ChampionDto.Bio, champions.Bio);
|
||||
Assert.AreEqual(ChampionDtoPut.Bio, champions.Bio);
|
||||
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public async Task TestDeleteChampion()
|
||||
{
|
||||
//Arange
|
||||
|
||||
|
||||
//Act
|
||||
var total = await stub.ChampionsMgr.GetNbItems();
|
||||
var championsResult = await champs.Delete("Akali");
|
||||
|
||||
//Assert
|
||||
var objectResult = championsResult as OkObjectResult;
|
||||
Assert.IsNotNull(objectResult);
|
||||
|
||||
Assert.AreEqual(objectResult.Value, true);
|
||||
Assert.AreNotEqual(await stub.ChampionsMgr.GetNbItems(), total);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,219 @@
|
||||
using ApiLol.Controllers;
|
||||
using ApiLol.Controllers.v2;
|
||||
using DTO;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Logging.Abstractions;
|
||||
using StubLib;
|
||||
|
||||
namespace ApiTests
|
||||
{
|
||||
[TestClass]
|
||||
public class ChampionsControllerTestV2
|
||||
{
|
||||
private readonly StubData stub;
|
||||
private readonly ChampionsController champs;
|
||||
public ChampionsControllerTestV2()
|
||||
{
|
||||
stub = new StubData();
|
||||
champs = new ChampionsController(stub, new NullLogger<ChampionsController>());
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public async Task TestGetChampions()
|
||||
{
|
||||
//Arrange
|
||||
|
||||
//Act
|
||||
var total = await stub.ChampionsMgr.GetNbItems();
|
||||
var champion = await champs.Get(new PageRequest());
|
||||
|
||||
//Assert
|
||||
var objectResult = champion as OkObjectResult;
|
||||
Assert.IsNotNull(objectResult);
|
||||
|
||||
var champions = objectResult?.Value as IEnumerable<ChampionDto>;
|
||||
Assert.IsNotNull(champions);
|
||||
|
||||
Assert.AreEqual(champions.Count(), total);
|
||||
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public async Task TestGetV3Champions()
|
||||
{
|
||||
//Arrange
|
||||
|
||||
//Act
|
||||
var total = await stub.ChampionsMgr.GetNbItems();
|
||||
var champion = await champs.GetV3(new PageRequest());
|
||||
|
||||
//Assert
|
||||
var objectResult = champion as OkObjectResult;
|
||||
Assert.IsNotNull(objectResult);
|
||||
|
||||
var skinsResult = objectResult?.Value as PageResponse<ChampionDto>;
|
||||
Assert.IsNotNull(skinsResult);
|
||||
|
||||
var result = skinsResult?.Data as IEnumerable<ChampionDto>;
|
||||
Assert.IsNotNull(result);
|
||||
|
||||
Assert.AreEqual(result.Count(), total);
|
||||
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public async Task TestCountChampion()
|
||||
{
|
||||
//Arange
|
||||
var ChampionDto = new ChampionDto
|
||||
{
|
||||
Name = "Sylas",
|
||||
Bio = "Good",
|
||||
Class = ChampionClassDto.Tank,
|
||||
Icon = "",
|
||||
Image = new LargeImageDto() { Base64 = "" },
|
||||
Skins = new List<SkinDto>()
|
||||
{
|
||||
new SkinDto() {Name = "Project", Description = "Test", Icon = "",Image = new LargeImageDto(),Price = 900 }
|
||||
},
|
||||
Skills = new List<SkillDto>()
|
||||
{
|
||||
new SkillDto() {Name = "Test skill", Description="Empty", Type = SkillTypeDto.Unknown}
|
||||
}
|
||||
};
|
||||
|
||||
//Act
|
||||
var oldTotal = await stub.ChampionsMgr.GetNbItems();
|
||||
var oldResult = await champs.GetCountChampions();
|
||||
await champs.Post(ChampionDto);
|
||||
|
||||
var newTotal = await stub.ChampionsMgr.GetNbItems();
|
||||
var newResult = await champs.GetCountChampions();
|
||||
|
||||
//Assert
|
||||
var objectResultOld = oldResult as OkObjectResult;
|
||||
Assert.IsNotNull(objectResultOld);
|
||||
|
||||
var objectResultNew = newResult as OkObjectResult;
|
||||
Assert.IsNotNull(objectResultNew);
|
||||
|
||||
Assert.AreEqual(objectResultOld.Value, oldTotal);
|
||||
Assert.AreNotEqual(objectResultOld.Value, newTotal);
|
||||
|
||||
Assert.AreEqual(objectResultNew.Value, newTotal);
|
||||
Assert.AreNotEqual(objectResultNew.Value, oldTotal);
|
||||
|
||||
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public async Task TestPostChampion()
|
||||
{
|
||||
//Arange
|
||||
var ChampionDto = new ChampionDto
|
||||
{
|
||||
Name = "Sylas",
|
||||
Bio = "Good",
|
||||
Class = ChampionClassDto.Tank,
|
||||
Icon = "",
|
||||
Image = new LargeImageDto() { Base64 = "" },
|
||||
Skins = new List<SkinDto>()
|
||||
{
|
||||
new SkinDto() {Name = "Project", Description = "Test", Icon = "",Image = new LargeImageDto(),Price = 900 }
|
||||
},
|
||||
Skills = new List<SkillDto>()
|
||||
{
|
||||
new SkillDto() {Name = "Test skill", Description="Empty", Type = SkillTypeDto.Unknown}
|
||||
}
|
||||
};
|
||||
|
||||
//Act
|
||||
var championsResult = await champs.Post(ChampionDto);
|
||||
|
||||
//Assert
|
||||
var objectResult = championsResult as CreatedAtActionResult;
|
||||
Assert.IsNotNull(objectResult);
|
||||
|
||||
var champions = objectResult?.Value as ChampionDto;
|
||||
Assert.IsNotNull(champions);
|
||||
|
||||
Assert.AreEqual("Sylas", champions.Name);
|
||||
|
||||
Assert.AreEqual("Project", champions.Skins.First().Name);
|
||||
Assert.AreEqual("Test", champions.Skins.First().Description);
|
||||
|
||||
Assert.AreEqual("Test skill", champions.Skills.First().Name);
|
||||
Assert.AreEqual("Empty", champions.Skills.First().Description);
|
||||
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public async Task TestPutChampion()
|
||||
{
|
||||
//Arange
|
||||
var ChampionDto = new ChampionDto
|
||||
{
|
||||
Name = "Sylas",
|
||||
Bio = "Good",
|
||||
Class = ChampionClassDto.Tank,
|
||||
Icon = "",
|
||||
Image = new LargeImageDto() { Base64 = "" },
|
||||
Skins = new List<SkinDto>()
|
||||
{
|
||||
new SkinDto() {Name = "Project", Description = "Test", Icon = "",Image = new LargeImageDto(),Price = 900 }
|
||||
},
|
||||
Skills = new List<SkillDto>()
|
||||
{
|
||||
new SkillDto() {Name = "Test skill", Description="Empty", Type = SkillTypeDto.Unknown}
|
||||
}
|
||||
};
|
||||
var ChampionDtoPut = new ChampionDto
|
||||
{
|
||||
Name = "new Sylas",
|
||||
Bio = "Bad",
|
||||
Class = ChampionClassDto.Tank,
|
||||
Icon = "",
|
||||
Image = new LargeImageDto() { Base64 = "" },
|
||||
Skins = new List<SkinDto>(),
|
||||
Skills = new List<SkillDto>()
|
||||
};
|
||||
|
||||
//Act
|
||||
await champs.Post(ChampionDto);
|
||||
var championsResult = await champs.Put(ChampionDto.Name, ChampionDtoPut);
|
||||
|
||||
//Assert
|
||||
var objectResult = championsResult as OkObjectResult;
|
||||
Assert.IsNotNull(objectResult);
|
||||
|
||||
var champions = objectResult?.Value as ChampionDto;
|
||||
Assert.IsNotNull(champions);
|
||||
|
||||
Assert.AreNotEqual(ChampionDto.Bio, champions.Bio);
|
||||
Assert.AreNotEqual(ChampionDto.Name, champions.Name);
|
||||
Assert.AreEqual(ChampionDtoPut.Bio, champions.Bio);
|
||||
Assert.AreEqual(ChampionDtoPut.Name, champions.Name);
|
||||
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public async Task TestDeleteChampion()
|
||||
{
|
||||
//Arange
|
||||
|
||||
|
||||
//Act
|
||||
var total = await stub.ChampionsMgr.GetNbItems();
|
||||
var championsResult = await champs.Delete("Renekton");
|
||||
|
||||
//Assert
|
||||
var objectResult = championsResult as NoContentResult;
|
||||
Assert.IsNotNull(objectResult);
|
||||
|
||||
Assert.AreNotEqual(await stub.ChampionsMgr.GetNbItems(), total);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in new issue