aboutsummaryrefslogtreecommitdiff
path: root/src/Web/DevHive.Web.Tests/PostController.Tests.cs
blob: f10f8dd879955b13d5b66f8da0474518402e2c9a (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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
using System;
using System.Linq;
using System.Threading.Tasks;
using AutoMapper;
using DevHive.Services.Interfaces;
using DevHive.Services.Models.Post;
using DevHive.Web.Controllers;
using DevHive.Web.Models.Post;
using Microsoft.AspNetCore.Mvc;
using Moq;
using NUnit.Framework;

namespace DevHive.Web.Tests
{
	[TestFixture]
	public class PostControllerTests
	{
		const string MESSAGE = "Gosho Trapov";
		private Mock<IPostService> PostServiceMock { get; set; }
		private Mock<IMapper> MapperMock { get; set; }
		private PostController PostController { get; set; }

		[SetUp]
		public void SetUp()
		{
			this.PostServiceMock = new Mock<IPostService>();
			this.MapperMock = new Mock<IMapper>();
			this.PostController = new PostController(this.PostServiceMock.Object, this.MapperMock.Object);
		}

		#region Create
		[Test]
		public void CreatePost_ReturnsOkObjectResult_WhenPostIsSuccessfullyCreated()
		{
			CreatePostWebModel createPostWebModel = new()
			{
				Message = MESSAGE
			};
			CreatePostServiceModel createPostServiceModel = new()
			{
				Message = MESSAGE
			};
			Guid id = Guid.NewGuid();

			this.MapperMock.Setup(p => p.Map<CreatePostServiceModel>(It.IsAny<CreatePostWebModel>())).Returns(createPostServiceModel);
			this.PostServiceMock.Setup(p => p.CreatePost(It.IsAny<CreatePostServiceModel>())).Returns(Task.FromResult(id));
			this.PostServiceMock.Setup(p => p.ValidateJwtForCreating(It.IsAny<Guid>(), It.IsAny<string>())).Returns(Task.FromResult(true));

			IActionResult result = this.PostController.Create(Guid.Empty, createPostWebModel, null).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 CreatePost_ReturnsBadRequestObjectResult_WhenPostIsNotCreatedSuccessfully()
		{
			CreatePostWebModel createTechnologyWebModel = new()
			{
				Message = MESSAGE
			};
			CreatePostServiceModel createTechnologyServiceModel = new()
			{
				Message = MESSAGE
			};
			Guid id = Guid.Empty;
			string errorMessage = $"Could not create post!";

			this.MapperMock.Setup(p => p.Map<CreatePostServiceModel>(It.IsAny<CreatePostWebModel>())).Returns(createTechnologyServiceModel);
			this.PostServiceMock.Setup(p => p.CreatePost(It.IsAny<CreatePostServiceModel>())).Returns(Task.FromResult(id));
			this.PostServiceMock.Setup(p => p.ValidateJwtForCreating(It.IsAny<Guid>(), It.IsAny<string>())).Returns(Task.FromResult(true));

			IActionResult result = this.PostController.Create(Guid.Empty, createTechnologyWebModel, null).Result;

			Assert.IsInstanceOf<BadRequestObjectResult>(result);

			BadRequestObjectResult badRequestObjectResult = result as BadRequestObjectResult;
			string resultMessage = badRequestObjectResult.Value.ToString();

			Assert.AreEqual(errorMessage, resultMessage);
		}

		[Test]
		public void CreatePost_ReturnsUnauthorizedResult_WhenUserIsNotAuthorized()
		{
			CreatePostWebModel createPostWebModel = new()
			{
				Message = MESSAGE
			};

			this.PostServiceMock.Setup(p => p.ValidateJwtForCreating(It.IsAny<Guid>(), It.IsAny<string>())).Returns(Task.FromResult(false));

			IActionResult result = this.PostController.Create(Guid.NewGuid(), createPostWebModel, null).Result;

			Assert.IsInstanceOf<UnauthorizedResult>(result);
		}
		#endregion

		#region Read
		[Test]
		public void GetById_ReturnsThePost_WhenItExists()
		{
			Guid id = Guid.NewGuid();

			ReadPostServiceModel readPostServiceModel = new()
			{
				Message = MESSAGE
			};
			ReadPostWebModel readPostWebModel = new()
			{
				Message = MESSAGE
			};

			this.PostServiceMock.Setup(p => p.GetPostById(It.IsAny<Guid>())).Returns(Task.FromResult(readPostServiceModel));
			this.MapperMock.Setup(p => p.Map<ReadPostWebModel>(It.IsAny<ReadPostServiceModel>())).Returns(readPostWebModel);

			IActionResult result = this.PostController.GetById(id).Result;

			Assert.IsInstanceOf<OkObjectResult>(result);

			OkObjectResult okObjectResult = result as OkObjectResult;
			ReadPostWebModel resultModel = okObjectResult.Value as Models.Post.ReadPostWebModel;

			Assert.AreEqual(MESSAGE, resultModel.Message);
		}
		#endregion

		#region Update
		[Test]
		public void Update_ShouldReturnOkResult_WhenPostIsUpdatedSuccessfully()
		{
			Guid id = Guid.NewGuid();
			UpdatePostWebModel updatePostWebModel = new()
			{
				NewMessage = MESSAGE
			};
			UpdatePostServiceModel updatePostServiceModel = new()
			{
				NewMessage = MESSAGE
			};

			this.PostServiceMock.Setup(p => p.UpdatePost(It.IsAny<UpdatePostServiceModel>())).Returns(Task.FromResult(id));
			this.MapperMock.Setup(p => p.Map<UpdatePostServiceModel>(It.IsAny<UpdatePostWebModel>())).Returns(updatePostServiceModel);
			this.PostServiceMock.Setup(p => p.ValidateJwtForPost(It.IsAny<Guid>(), It.IsAny<string>())).Returns(Task.FromResult(true));

			IActionResult result = this.PostController.Update(id, updatePostWebModel, null).Result;

			Assert.IsInstanceOf<OkObjectResult>(result);
		}

		[Test]
		public void Update_ShouldReturnBadObjectResult_WhenPostIsNotUpdatedSuccessfully()
		{
			Guid id = Guid.NewGuid();
			string message = "Could not update post!";
			UpdatePostWebModel updatePostWebModel = new()
			{
				NewMessage = MESSAGE
			};
			UpdatePostServiceModel updatePostServiceModel = new()
			{
				NewMessage = MESSAGE
			};

			this.PostServiceMock.Setup(p => p.UpdatePost(It.IsAny<UpdatePostServiceModel>())).Returns(Task.FromResult(Guid.Empty));
			this.MapperMock.Setup(p => p.Map<UpdatePostServiceModel>(It.IsAny<UpdatePostWebModel>())).Returns(updatePostServiceModel);
			this.PostServiceMock.Setup(p => p.ValidateJwtForPost(It.IsAny<Guid>(), It.IsAny<string>())).Returns(Task.FromResult(true));

			IActionResult result = this.PostController.Update(id, updatePostWebModel, null).Result;
			Assert.IsInstanceOf<BadRequestObjectResult>(result);

			BadRequestObjectResult badRequestObjectResult = result as BadRequestObjectResult;
			string resultModel = badRequestObjectResult.Value.ToString();

			Assert.AreEqual(message, resultModel);
		}

		[Test]
		public void Update_ShouldReturnUnauthorizedResult_WhenUserIsNotAuthorized()
		{
			UpdatePostWebModel updatePostWebModel = new()
			{
				NewMessage = MESSAGE
			};

			this.PostServiceMock.Setup(p => p.ValidateJwtForPost(It.IsAny<Guid>(), It.IsAny<string>())).Returns(Task.FromResult(false));

			IActionResult result = this.PostController.Update(Guid.Empty, updatePostWebModel, null).Result;

			Assert.IsInstanceOf<UnauthorizedResult>(result);
		}
		#endregion

		#region Delete
		[Test]
		public void Delete_ReturnsOkResult_WhenPostIsDeletedSuccessfully()
		{
			Guid id = Guid.NewGuid();

			this.PostServiceMock.Setup(p => p.DeletePost(It.IsAny<Guid>())).Returns(Task.FromResult(true));
			this.PostServiceMock.Setup(p => p.ValidateJwtForPost(It.IsAny<Guid>(), It.IsAny<string>())).Returns(Task.FromResult(true));

			IActionResult result = this.PostController.Delete(id, null).Result;

			Assert.IsInstanceOf<OkResult>(result);
		}

		[Test]
		public void Delete_ReturnsBadRequestObjectResult_WhenPostIsNotDeletedSuccessfully()
		{
			string message = "Could not delete Post";
			Guid id = Guid.NewGuid();

			this.PostServiceMock.Setup(p => p.DeletePost(It.IsAny<Guid>())).Returns(Task.FromResult(false));
			this.PostServiceMock.Setup(p => p.ValidateJwtForPost(It.IsAny<Guid>(), It.IsAny<string>())).Returns(Task.FromResult(true));

			IActionResult result = this.PostController.Delete(id, null).Result;

			Assert.IsInstanceOf<BadRequestObjectResult>(result);

			BadRequestObjectResult badRequestObjectResult = result as BadRequestObjectResult;
			string resultModel = badRequestObjectResult.Value.ToString();

			Assert.AreEqual(message, resultModel);
		}

		[Test]
		public void DeletePost_ReturnsUnauthorizedResult_WhenUserIsNotAuthorized()
		{
			this.PostServiceMock.Setup(p => p.ValidateJwtForPost(It.IsAny<Guid>(), It.IsAny<string>())).Returns(Task.FromResult(false));

			IActionResult result = this.PostController.Delete(Guid.Empty, null).Result;

			Assert.IsInstanceOf<UnauthorizedResult>(result);
		}
		#endregion
	}
}