-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserRepositorySpec.cs
151 lines (125 loc) · 4.81 KB
/
UserRepositorySpec.cs
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
using Database.Core;
using Domain;
using FluentAssertions;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Linq;
using System.Threading.Tasks;
using Xunit;
namespace Database.SQLite.Tests
{
public class UserRepositorySpec
{
public UserRepositorySpec(IServiceProvider serviceProvider)
{
ServiceProvider = serviceProvider;
}
public IServiceProvider ServiceProvider { get; }
[Fact]
public void Insert()
{
// Arrange
// 메모리DB를 테스트 종료 전까지 유지한다.
using var _ = ServiceProvider.GetService<IUnitOfWork>();
using (var scope = ServiceProvider.CreateScope())
{
var userRepo = scope.ServiceProvider.GetService<UserRepository>();
// 테이블을 생성한다.
userRepo.Initialize();
}
using (var scope = ServiceProvider.CreateScope())
{
var userRepo = scope.ServiceProvider.GetService<UserRepository>();
userRepo.Insert(new User
{
BLOB = new byte[] { 0x00, 0x01, 0x02 },
USER_GROUP = "Heros",
USER_NAME = "Clark",
PASSWORD = "Superman",
});
}
using (var scope = ServiceProvider.CreateScope())
{
var userRepo = scope.ServiceProvider.GetService<UserRepository>();
var users = userRepo.FindAll().ToArray();
users.Length.Should().Be(1);
users.First().Should().BeEquivalentTo(new User
{
BLOB = new byte[] { 0x00, 0x01, 0x02 },
USER_ID = 1,
USER_GROUP = "Heros",
USER_NAME = "Clark",
PASSWORD = "Superman",
}) ;
}
}
[Fact]
public void InsertMutipleConcurrency()
{
// Arrange
// 메모리DB를 테스트 종료 전까지 유지한다.
using var _ = ServiceProvider.GetService<IUnitOfWork>();
using (var scope = ServiceProvider.CreateScope())
{
var userRepo = scope.ServiceProvider.GetService<UserRepository>();
// 테이블을 생성한다.
userRepo.Initialize();
}
Parallel.ForEach(Enumerable.Range(0, 5), (x, s) =>
{
using (var scope = ServiceProvider.CreateScope())
{
var userRepo = scope.ServiceProvider.GetService<UserRepository>();
userRepo.Insert(new User
{
BLOB = new byte[] { 0x00, 0x01, 0x02 },
USER_GROUP = "Heros",
USER_NAME = "Clark" + x.ToString(),
PASSWORD = "Superman",
});
}
});
using (var scope = ServiceProvider.CreateScope())
{
var userRepo = scope.ServiceProvider.GetService<UserRepository>();
var users = userRepo.FindAll().ToArray();
users.Length.Should().Be(5);
}
}
[Fact]
public void InsertMutipleConcurrencyUsingTransaction()
{
// Arrange
// 메모리DB를 테스트 종료 전까지 유지한다.
using var _ = ServiceProvider.GetService<IUnitOfWork>();
using (var scope = ServiceProvider.CreateScope())
{
var userRepo = scope.ServiceProvider.GetService<UserRepository>();
// 테이블을 생성한다.
userRepo.Initialize();
}
Parallel.ForEach(Enumerable.Range(0, 5), (x, s) =>
{
using var scope = ServiceProvider.CreateScope();
// Transaction 시작
var uow = scope.ServiceProvider.GetService<IUnitOfWork>().BeginTransaction();
var userRepo = scope.ServiceProvider.GetService<UserRepository>();
userRepo.Insert(new User
{
BLOB = new byte[] { 0x00, 0x01, 0x02 },
USER_GROUP = "Heros",
USER_NAME = "Clark" + x.ToString(),
PASSWORD = "Superman",
});
// Transaction 반영
uow.Commit();
});
using (var scope = ServiceProvider.CreateScope())
{
var userRepo = scope.ServiceProvider.GetService<UserRepository>();
var users = userRepo.FindAll().ToArray();
users.Length.Should().Be(5);
}
}
}
}