-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathContentstackOptionsUnitTests.cs
More file actions
269 lines (218 loc) · 7.5 KB
/
ContentstackOptionsUnitTests.cs
File metadata and controls
269 lines (218 loc) · 7.5 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
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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
using System;
using System.Net;
using AutoFixture;
using Contentstack.Core.Configuration;
using Contentstack.Core.Internals;
using Xunit;
namespace Contentstack.Core.Unit.Tests
{
/// <summary>
/// Unit tests for ContentstackOptions class - uses mocks and AutoFixture, no real API calls
/// </summary>
public class ContentstackOptionsUnitTests
{
private readonly IFixture _fixture = new Fixture();
#region Initialization Tests
[Fact]
public void ContentstackOptions_Initialization_SetsDefaultValues()
{
// Act
var options = new ContentstackOptions();
// Assert
Assert.Equal(30000, options.Timeout);
Assert.Equal(ContentstackRegion.US, options.Region);
Assert.Null(options.ApiKey);
Assert.Null(options.DeliveryToken);
Assert.Null(options.Environment);
}
#endregion
#region Property Tests
[Fact]
public void ApiKey_SetAndGet_ReturnsCorrectValue()
{
// Arrange
var options = new ContentstackOptions();
var apiKey = _fixture.Create<string>();
// Act
options.ApiKey = apiKey;
// Assert
Assert.Equal(apiKey, options.ApiKey);
}
[Fact]
public void DeliveryToken_SetAndGet_ReturnsCorrectValue()
{
// Arrange
var options = new ContentstackOptions();
var deliveryToken = _fixture.Create<string>();
// Act
options.DeliveryToken = deliveryToken;
// Assert
Assert.Equal(deliveryToken, options.DeliveryToken);
}
[Fact]
public void AccessToken_SetAndGet_ReturnsCorrectValue()
{
// Arrange
var options = new ContentstackOptions();
var accessToken = _fixture.Create<string>();
// Act
#pragma warning disable CS0618 // Type or member is obsolete
options.AccessToken = accessToken;
#pragma warning restore CS0618 // Type or member is obsolete
// Assert
#pragma warning disable CS0618 // Type or member is obsolete
Assert.Equal(accessToken, options.AccessToken);
#pragma warning restore CS0618 // Type or member is obsolete
}
[Fact]
public void Environment_SetAndGet_ReturnsCorrectValue()
{
// Arrange
var options = new ContentstackOptions();
var environment = _fixture.Create<string>();
// Act
options.Environment = environment;
// Assert
Assert.Equal(environment, options.Environment);
}
[Fact]
public void Host_SetAndGet_ReturnsCorrectValue()
{
// Arrange
var options = new ContentstackOptions();
var host = "cdn.contentstack.io";
// Act
options.Host = host;
// Assert
Assert.Equal(host, options.Host);
}
[Fact]
public void Proxy_SetAndGet_ReturnsCorrectValue()
{
// Arrange
var options = new ContentstackOptions();
var proxy = new WebProxy("http://proxy.example.com:8080");
// Act
options.Proxy = proxy;
// Assert
Assert.NotNull(options.Proxy);
Assert.Equal(proxy, options.Proxy);
}
[Fact]
public void Region_SetAndGet_ReturnsCorrectValue()
{
// Arrange
var options = new ContentstackOptions();
var region = ContentstackRegion.EU;
// Act
options.Region = region;
// Assert
Assert.Equal(region, options.Region);
}
[Fact]
public void Version_SetAndGet_ReturnsCorrectValue()
{
// Arrange
var options = new ContentstackOptions();
var version = "v3";
// Act
options.Version = version;
// Assert
Assert.Equal(version, options.Version);
}
[Fact]
public void LivePreview_SetAndGet_ReturnsCorrectValue()
{
// Arrange
var options = new ContentstackOptions();
var livePreview = new LivePreviewConfig
{
Enable = true,
PreviewToken = "preview_token"
};
// Act
options.LivePreview = livePreview;
// Assert
Assert.NotNull(options.LivePreview);
Assert.Equal(livePreview, options.LivePreview);
Assert.True(options.LivePreview.Enable);
Assert.Equal("preview_token", options.LivePreview.PreviewToken);
}
[Fact]
public void Branch_SetAndGet_ReturnsCorrectValue()
{
// Arrange
var options = new ContentstackOptions();
var branch = "main";
// Act
options.Branch = branch;
// Assert
Assert.Equal(branch, options.Branch);
}
[Fact]
public void Timeout_SetAndGet_ReturnsCorrectValue()
{
// Arrange
var options = new ContentstackOptions();
var timeout = 60000;
// Act
options.Timeout = timeout;
// Assert
Assert.Equal(timeout, options.Timeout);
}
[Fact]
public void EarlyAccessHeader_SetAndGet_ReturnsCorrectValue()
{
// Arrange
var options = new ContentstackOptions();
var headers = new string[] { "header1", "header2" };
// Act
options.EarlyAccessHeader = headers;
// Assert
Assert.NotNull(options.EarlyAccessHeader);
Assert.Equal(2, options.EarlyAccessHeader.Length);
Assert.Equal("header1", options.EarlyAccessHeader[0]);
Assert.Equal("header2", options.EarlyAccessHeader[1]);
}
#endregion
#region Complete Configuration Tests
[Fact]
public void ContentstackOptions_WithAllPropertiesSet_ReturnsAllValues()
{
// Arrange
var apiKey = _fixture.Create<string>();
var deliveryToken = _fixture.Create<string>();
var environment = _fixture.Create<string>();
var host = "cdn.contentstack.io";
var region = ContentstackRegion.EU;
var version = "v3";
var branch = "main";
var timeout = 60000;
var livePreview = new LivePreviewConfig { Enable = true };
// Act
var options = new ContentstackOptions
{
ApiKey = apiKey,
DeliveryToken = deliveryToken,
Environment = environment,
Host = host,
Region = region,
Version = version,
Branch = branch,
Timeout = timeout,
LivePreview = livePreview
};
// Assert
Assert.Equal(apiKey, options.ApiKey);
Assert.Equal(deliveryToken, options.DeliveryToken);
Assert.Equal(environment, options.Environment);
Assert.Equal(host, options.Host);
Assert.Equal(region, options.Region);
Assert.Equal(version, options.Version);
Assert.Equal(branch, options.Branch);
Assert.Equal(timeout, options.Timeout);
Assert.NotNull(options.LivePreview);
}
#endregion
}
}