-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathentity_test.go
More file actions
215 lines (167 loc) · 4.72 KB
/
Copy pathentity_test.go
File metadata and controls
215 lines (167 loc) · 4.72 KB
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
package es
import (
"testing"
"github.com/google/uuid"
"github.com/stretchr/testify/assert"
)
func TestShouldCreateEntityWithSpecifiedValues(t *testing.T) {
// Arrange
id := uuid.New()
area := "test-area"
// Act
entity := NewEntity(id, area)
// Assert
assert.Equal(t, id, entity.ID)
assert.Equal(t, area, entity.Area)
assert.Equal(t, ScopeGlobal, entity.Scope)
assert.Equal(t, uuid.Nil, entity.TenantID)
}
func TestShouldCreateEntityInAreaWithGeneratedID(t *testing.T) {
// Arrange
area := "test-area"
// Act
entity := NewEntityInArea(area)
// Assert
assert.NotEqual(t, uuid.Nil, entity.ID)
assert.Equal(t, area, entity.Area)
assert.Equal(t, ScopeGlobal, entity.Scope)
assert.Equal(t, uuid.Nil, entity.TenantID)
}
func TestShouldCreateTenantEntityWithSpecifiedValues(t *testing.T) {
// Arrange
tenantID := uuid.New()
id := uuid.New()
area := "test-area"
// Act
entity := NewTenantEntity(tenantID, id, area)
// Assert
assert.Equal(t, id, entity.ID)
assert.Equal(t, area, entity.Area)
assert.Equal(t, ScopeTenant, entity.Scope)
assert.Equal(t, tenantID, entity.TenantID)
}
func TestShouldCreateTenantEntityInAreaWithGeneratedID(t *testing.T) {
// Arrange
tenantID := uuid.New()
id := uuid.New()
area := "test-area"
// Act
entity := NewTenantEntityInArea(tenantID, id, area)
// Assert
assert.NotEqual(t, uuid.Nil, entity.ID)
assert.Equal(t, area, entity.Area)
assert.Equal(t, ScopeTenant, entity.Scope)
assert.Equal(t, tenantID, entity.TenantID)
}
func TestShouldCreateAuditStreamEntityWithGeneratedIDAndSameArea(t *testing.T) {
domain := NewTenantEntity(uuid.New(), uuid.New(), "users")
audit := AuditStreamEntity(domain)
assert.NotEqual(t, uuid.Nil, audit.ID)
assert.NotEqual(t, domain.ID, audit.ID)
assert.Equal(t, domain.Area, audit.Area)
assert.Equal(t, domain.TenantID, audit.TenantID)
assert.Equal(t, domain.Scope, audit.Scope)
}
func TestShouldReturnCorrectAreaForGlobalEntity(t *testing.T) {
// Arrange
entity := NewEntity(uuid.New(), "test-area")
// Act
area := entity.Area
// Assert
assert.Equal(t, "test-area", area)
}
func TestShouldReturnCorrectAreaForTenantEntity(t *testing.T) {
// Arrange
tenantID := uuid.New()
entity := NewTenantEntity(tenantID, uuid.New(), "test-area")
// Act
area := entity.Area
// Assert
expected := "test-area"
assert.Equal(t, expected, area)
}
func TestShouldDetectEmptyEntity(t *testing.T) {
// Arrange
empty := Entity{}
nonEmpty := NewEntity(uuid.New(), "test")
// Act & Assert
assert.True(t, empty.IsEmpty())
assert.False(t, nonEmpty.IsEmpty())
assert.True(t, EmptyEntity.IsEmpty())
}
func TestShouldGenerateUniqueNamespace(t *testing.T) {
// Arrange
id := uuid.New()
entity1 := NewEntity(id, "area1")
entity2 := NewEntity(id, "area2")
entity3 := NewTenantEntity(uuid.New(), id, "area1")
// Act
ns1 := entity1.GetNamespace()
ns2 := entity2.GetNamespace()
ns3 := entity3.GetNamespace()
// Assert
assert.NotEqual(t, ns1, ns2) // Different areas should have different namespaces
assert.NotEqual(t, ns1, ns3) // Different tenants should have different namespaces
assert.NotEqual(t, ns2, ns3)
}
func TestShouldReturnNamespaceWhenUsingTryGetNamespace(t *testing.T) {
// Arrange
entity := NewEntity(uuid.New(), "area1")
// Act
namespace, err := entity.TryGetNamespace()
// Assert
assert.NoError(t, err)
assert.NotEqual(t, uuid.Nil, namespace)
}
func TestShouldPanicWhenGettingNamespaceWithEmptyArea(t *testing.T) {
// Arrange
entity := Entity{ID: uuid.New()}
// Act & Assert
assert.Panics(t, func() {
entity.GetNamespace()
})
}
func TestShouldReturnErrorWhenGettingNamespaceWithEmptyAreaUsingTryGetNamespace(t *testing.T) {
// Arrange
entity := Entity{ID: uuid.New()}
// Act
namespace, err := entity.TryGetNamespace()
// Assert
assert.Equal(t, uuid.Nil, namespace)
assert.ErrorIs(t, err, ErrInvalidEntity)
assert.EqualError(t, err, "Area is required")
}
func TestShouldReturnCorrectEntityIDForGivenEntity(t *testing.T) {
// Arrange
id := uuid.New()
entity := NewEntity(id, "test-area")
// Act
result := entity.GetID()
// Assert
assert.Equal(t, id, result)
}
func TestShouldReturnCorrectTenantIDForEntity(t *testing.T) {
// Arrange
tenantID := uuid.New()
entity := NewTenantEntity(tenantID, uuid.New(), "test-area")
// Act
result := entity.GetTenantID()
// Assert
assert.Equal(t, tenantID, result)
}
func TestShouldReturnCorrectScopeForGlobalEntity(t *testing.T) {
// Arrange
entity := NewEntity(uuid.New(), "test-area")
// Act
scope := entity.GetScope()
// Assert
assert.Equal(t, ScopeGlobal, scope)
}
func TestShouldReturnCorrectScopeForTenantEntity(t *testing.T) {
// Arrange
entity := NewTenantEntity(uuid.New(), uuid.New(), "test-area")
// Act
scope := entity.GetScope()
// Assert
assert.Equal(t, ScopeTenant, scope)
}