blob: 0e192219723a184e5e672476e0b5c4ce8b35fd9a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
|
using System;
using System.Linq;
using AutoMapper;
using DevHive.Services.Interfaces;
using DevHive.Services.Models.Role;
using DevHive.Web.Controllers;
using DevHive.Web.Models.Role;
using Microsoft.AspNetCore.Mvc;
using Moq;
using NUnit.Framework;
namespace DevHive.Web.Tests
{
[TestFixture]
public class RoleControllerTests
{
const string NAME = "Gosho Trapov";
private Mock<IRoleService> _roleServiceMock;
private Mock<IMapper> _mapperMock;
private RoleController _roleController;
[SetUp]
public void SetUp()
{
this._roleServiceMock = new Mock<IRoleService>();
this._mapperMock = new Mock<IMapper>();
this._roleController = new RoleController(this._roleServiceMock.Object, this._mapperMock.Object);
}
#region Create
[Test]
public void CreateRole_ReturnsOkObjectResult_WhenRoleIsSuccessfullyCreated()
{
CreateRoleWebModel createRoleWebModel = new CreateRoleWebModel
{
Name = NAME
};
CreateRoleServiceModel createRoleServiceModel = new CreateRoleServiceModel
{
Name = NAME
};
Guid id = Guid.NewGuid();
this._mapperMock
.Setup(p => p.Map<CreateRoleServiceModel>(It.IsAny<CreateRoleWebModel>()))
.Returns(createRoleServiceModel);
this._roleServiceMock
.Setup(p => p.CreateRole(It.IsAny<CreateRoleServiceModel>()))
.ReturnsAsync(id);
IActionResult result = this._roleController.Create(createRoleWebModel).Result;
Assert.IsInstanceOf<OkObjectResult>(result);
var splitted = (result as OkObjectResult).Value
.ToString()
.Split('{', '}', '=', ' ')
.Where(x => !string.IsNullOrEmpty(x))
.ToArray();
Guid resultId = Guid.Parse(splitted[1]);
Assert.AreEqual(id, resultId);
}
[Test]
public void CreateRole_ReturnsBadRequestObjectResult_WhenRoleIsNotCreatedSuccessfully()
{
CreateRoleWebModel createTechnologyWebModel = new CreateRoleWebModel
{
Name = NAME
};
CreateRoleServiceModel createTechnologyServiceModel = new CreateRoleServiceModel
{
Name = NAME
};
Guid id = Guid.Empty;
string errorMessage = $"Could not create role {NAME}";
this._mapperMock
.Setup(p => p.Map<CreateRoleServiceModel>(It.IsAny<CreateRoleWebModel>()))
.Returns(createTechnologyServiceModel);
this._roleServiceMock
.Setup(p => p.CreateRole(It.IsAny<CreateRoleServiceModel>()))
.ReturnsAsync(id);
IActionResult result = this._roleController.Create(createTechnologyWebModel).Result;
Assert.IsInstanceOf<BadRequestObjectResult>(result);
BadRequestObjectResult badRequestObjectResult = result as BadRequestObjectResult;
string resultMessage = badRequestObjectResult.Value.ToString();
Assert.AreEqual(errorMessage, resultMessage);
}
#endregion
#region Read
[Test]
public void GetById_ReturnsTheRole_WhenItExists()
{
Guid id = Guid.NewGuid();
RoleServiceModel roleServiceModel = new RoleServiceModel
{
Name = NAME
};
RoleWebModel roleWebModel = new RoleWebModel
{
Name = NAME
};
this._roleServiceMock
.Setup(p => p.GetRoleById(It.IsAny<Guid>()))
.ReturnsAsync(roleServiceModel);
this._mapperMock
.Setup(p => p.Map<RoleWebModel>(It.IsAny<RoleServiceModel>()))
.Returns(roleWebModel);
IActionResult result = this._roleController.GetById(id).Result;
Assert.IsInstanceOf<OkObjectResult>(result);
OkObjectResult okObjectResult = result as OkObjectResult;
RoleWebModel resultModel = okObjectResult.Value as RoleWebModel;
Assert.AreEqual(NAME, resultModel.Name);
}
#endregion
#region Update
[Test]
public void Update_ShouldReturnOkResult_WhenRoleIsUpdatedSuccessfully()
{
Guid id = Guid.NewGuid();
UpdateRoleWebModel updateRoleWebModel = new UpdateRoleWebModel
{
Name = NAME
};
UpdateRoleServiceModel updateRoleServiceModel = new UpdateRoleServiceModel
{
Name = NAME
};
this._roleServiceMock
.Setup(p => p.UpdateRole(It.IsAny<UpdateRoleServiceModel>()))
.ReturnsAsync(true);
this._mapperMock
.Setup(p => p.Map<UpdateRoleServiceModel>(It.IsAny<UpdateRoleWebModel>()))
.Returns(updateRoleServiceModel);
IActionResult result = this._roleController.Update(id, updateRoleWebModel).Result;
Assert.IsInstanceOf<OkResult>(result);
}
[Test]
public void Update_ShouldReturnBadObjectResult_WhenRoleIsNotUpdatedSuccessfully()
{
Guid id = Guid.NewGuid();
string message = "Could not update role!";
UpdateRoleWebModel updateRoleWebModel = new UpdateRoleWebModel
{
Name = NAME
};
UpdateRoleServiceModel updateRoleServiceModel = new UpdateRoleServiceModel
{
Name = NAME
};
this._roleServiceMock
.Setup(p => p.UpdateRole(It.IsAny<UpdateRoleServiceModel>()))
.ReturnsAsync(false);
this._mapperMock
.Setup(p => p.Map<UpdateRoleServiceModel>(It.IsAny<UpdateRoleWebModel>()))
.Returns(updateRoleServiceModel);
IActionResult result = this._roleController.Update(id, updateRoleWebModel).Result;
Assert.IsInstanceOf<BadRequestObjectResult>(result);
BadRequestObjectResult badRequestObjectResult = result as BadRequestObjectResult;
string resultModel = badRequestObjectResult.Value.ToString();
Assert.AreEqual(message, resultModel);
}
#endregion
#region Delete
[Test]
public void Delete_ReturnsOkResult_WhenRoleIsDeletedSuccessfully()
{
Guid id = Guid.NewGuid();
this._roleServiceMock
.Setup(p => p.DeleteRole(It.IsAny<Guid>()))
.ReturnsAsync(true);
IActionResult result = this._roleController.Delete(id).Result;
Assert.IsInstanceOf<OkResult>(result);
}
[Test]
public void Delete_ReturnsBadRequestObjectResult_WhenRoleIsNotDeletedSuccessfully()
{
string message = "Could not delete role!";
Guid id = Guid.NewGuid();
this._roleServiceMock
.Setup(p => p.DeleteRole(It.IsAny<Guid>()))
.ReturnsAsync(false);
IActionResult result = this._roleController.Delete(id).Result;
Assert.IsInstanceOf<BadRequestObjectResult>(result);
BadRequestObjectResult badRequestObjectResult = result as BadRequestObjectResult;
string resultModel = badRequestObjectResult.Value.ToString();
Assert.AreEqual(message, resultModel);
}
#endregion
}
}
|