-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathTestRepository.cs
More file actions
118 lines (108 loc) · 4.88 KB
/
Copy pathTestRepository.cs
File metadata and controls
118 lines (108 loc) · 4.88 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
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Threading.Tasks;
using Moq;
using NUnit.Framework;
using RestSharp;
using Untappd.Net.Authentication;
using Untappd.Net.Exception;
using Untappd.Net.Request;
using Untappd.Net.Responses.Actions;
using Untappd.Net.Responses.BeerInfo;
namespace Untappd.Net.UnitTests.Request
{
[TestFixture]
public class TestRepository
{
[Test]
public void ConfirmRequestWorks()
{
// var mockCreds = new Mock<IUnAuthenticatedUntappdCredentials>();
// mockCreds.Setup(a => a.AuthenticationData).Returns(new ReadOnlyDictionary<string, string>(new Dictionary<string, string>()
// {
// {"client_id", "id"},
// {"client_secret", "secret"}
// }));
// var bodyParam = new Dictionary<string, object> { { "key", "value" } };
// var client = new Mock<IRestClient>();
// var request = new Mock<IRestRequest>();
// request.Setup(a => a.AddParameter(It.IsAny<string>(), It.IsAny<string>()));
// request.Setup(a => a.AddParameter(It.IsAny<string>(), It.IsAny<string>()));
// var response = new Mock<IRestResponse>();
// response.Setup(a => a.Content).Returns(File.ReadAllText("../../Responses/Json/BeerInfo.json"));
// client.Setup(a => a.Execute(It.IsAny<IRestRequest>())).Callback(() =>
// {
// }).Returns(response.Object);
// client.Setup(a => a.ExecuteTaskAsync(It.IsAny<IRestRequest>())).Callback(() =>
// {
// }).Returns(Task.Run(() => response.Object));
// #pragma warning disable CS0618 // Type or member is obsolete Using as intended
// var repository = new Repository(client.Object, request.Object);
// #pragma warning restore CS0618 // Type or member is obsolete
// repository.Get<BeerInfo>(mockCreds.Object, "awesome", bodyParam);
// request.Verify(a => a.AddParameter("client_id", mockCreds.Object.AuthenticationData["client_id"]));
// request.Verify(a => a.AddParameter("client_secret", mockCreds.Object.AuthenticationData["client_secret"]));
// request.Verify(a => a.AddParameter("key", "value"));
// repository.GetAsync<BeerInfo>(mockCreds.Object, "awesome", bodyParam).Wait();
// request.Verify(a => a.AddParameter("client_id", mockCreds.Object.AuthenticationData["client_id"]));
// request.Verify(a => a.AddParameter("client_secret", mockCreds.Object.AuthenticationData["client_secret"]));
// request.Verify(a => a.AddParameter("key", "value"));
// var mockAuthCreds = new Mock<IAuthenticatedUntappdCredentials>();
// mockAuthCreds.Setup(a => a.AuthenticationData).Returns(new ReadOnlyDictionary<string, string>(new Dictionary<string, string>()
// {
// {"access_token", "accessToken"}
// }));
// repository.Get<BeerInfo>(mockAuthCreds.Object, "awesome", bodyParam);
// request.Verify(a => a.AddParameter("key", "value"));
// request.Verify(a => a.AddParameter("access_token", "accessToken"));
// repository.GetAsync<BeerInfo>(mockAuthCreds.Object, "awesome", bodyParam).Wait();
// request.Verify(a => a.AddParameter("key", "value"));
// request.Verify(a => a.AddParameter("access_token", "accessToken"));
// mockAuthCreds.Setup(a => a.AuthenticationData).Returns(new ReadOnlyDictionary<string, string>(new Dictionary<string, string>()
// {
// {"access_token", "PostaccessToken"}
// }));
// var checkin = new CheckIn("-5", "EST", 1044097) { Shout = "Awesome Brew", Rating = 4 };
// repository.FailFast = true;
// repository.OnExceptionThrown += (sender, e) =>
// {
// Assert.IsNotNull(sender);
// Assert.IsNotNull(e);
// };
// Assert.Throws<HttpErrorException>(() => repository.Post(mockAuthCreds.Object, checkin));
// repository.FailFast = false;
// repository.Post(mockAuthCreds.Object, checkin);
// request.Verify(a => a.AddParameter("access_token", "PostaccessToken"));
// mockAuthCreds.Setup(a => a.AuthenticationData).Returns(new ReadOnlyDictionary<string, string>(new Dictionary<string, string>()
// {
// {"access_token", "PostAsyncaccessToken"}
// }));
// repository.PostAsync(mockAuthCreds.Object, checkin).Wait();
// request.Verify(a => a.AddParameter("access_token", "PostAsyncaccessToken"));
}
[Test]
public void ConfirmBasicConstructorWorks()
{
// var constructorTest = new Repository();
// Assert.IsTrue(constructorTest.Client != null);
// Assert.IsTrue(constructorTest.Request != null);
}
[Test]
public void TimeoutShouldGetPassedIn()
{
// var timeout = 100;
// var repo = new Repository(timeout: timeout);
// Assert.AreEqual(repo.Request.Timeout, timeout);
}
[Test]
public void ConfirmConfigureGetRequestClearsParams()
{
// var constructorTest = new Repository();
// constructorTest.Request.Parameters.Add(new Parameter { Name = "param" });
// Assert.IsTrue(constructorTest.Request.Parameters.Count > 0);
// constructorTest.ConfigureRequest("endpoint");
// Assert.IsTrue(constructorTest.Request.Parameters.Count == 0);
}
}
}