-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathLivePreviewTests.cs
122 lines (105 loc) · 3.92 KB
/
LivePreviewTests.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
using System;
using Xunit;
using Contentstack.Core.Configuration;
using System.Threading.Tasks;
using System.Collections.Generic;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json;
namespace Contentstack.Core.Tests
{
public class TestContentstackClient : ContentstackClient
{
public TestContentstackClient(ContentstackOptions options)
: base(options)
{
}
// Override GetLivePreviewData with a hardcoded response
private new async Task<JObject> GetLivePreviewData()
{
var mockResponse = new
{
entry = new
{
uid = "mock_entry_uid",
title = "Mocked Entry",
content_type_uid = "mock_content_type",
status = "preview"
}
};
string jsonResponse = Newtonsoft.Json.JsonConvert.SerializeObject(mockResponse);
JObject data = JsonConvert.DeserializeObject<JObject>(jsonResponse, this.SerializerSettings);
return await Task.FromResult((JObject)data["entry"]);
}
// Public method to access the private method in tests
public async Task<JObject> TestGetLivePreviewData()
{
return await GetLivePreviewData();
}
}
public class LivePreviewTests
{
ContentstackClient client = StackConfig.GetStack();
ContentstackClient Lpclient = StackConfig.GetLPStack();
private String numbersContentType = "numbers_content_type";
String source = "source";
public double EPSILON { get; private set; }
[Fact]
public async Task CheckLivePreviewConfigNotSet()
{
var LPConfig = client.GetLivePreviewConfig();
Assert.False(LPConfig.Enable);
Assert.Null(LPConfig.PreviewToken);
Assert.Null(LPConfig.Host);
}
[Fact]
public async Task CheckLivePreviewConfigSet()
{
var LPConfig = Lpclient.GetLivePreviewConfig();
Assert.True(LPConfig.Enable);
Assert.NotEmpty(LPConfig.PreviewToken);
Assert.NotEmpty(LPConfig.Host);
}
[Fact]
public async Task setQueryWithLivePreview()
{
Dictionary<string, string> query = new Dictionary<string, string>
{
{ "content_type_uid", "ct1" },
{ "live_preview", "lphash" },
{ "release_id", "release_id" },
{ "preview_timestamp", "preview_timestamp" },
{ "entry_uid", "euid" }
};
Lpclient.LivePreviewQueryAsync(query);
var LPConfig = Lpclient.GetLivePreviewConfig();
Assert.Equal(LPConfig.PreviewTimestamp, "preview_timestamp");
Assert.NotEmpty(LPConfig.PreviewToken);
Assert.NotEmpty(LPConfig.PreviewToken);
Assert.NotEmpty(LPConfig.Host);
}
[Fact]
public async Task TestGetLivePreviewData()
{
// Arrange
var options = new ContentstackOptions
{
ApiKey = "test_api_key",
DeliveryToken = "test_delivery_token",
Environment = "test_environment",
LivePreview = new LivePreviewConfig
{
Enable = true,
PreviewToken = "preview_token", // Replace with a valid preview token
Host = "test-host" // Replace with a valid preview host (e.g., "rest-preview.contentstack.com")
}
};
var client = new TestContentstackClient(options);
// Act
var result = await client.TestGetLivePreviewData();
// Assert
Assert.NotNull(result);
Assert.Equal("mock_entry_uid", result["uid"].ToString());
Assert.Equal("Mocked Entry", result["title"].ToString());
}
}
}