-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathGeneralTests.cs
251 lines (225 loc) · 7.72 KB
/
GeneralTests.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
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
using System;
using System.Configuration;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System.Linq;
using YelpSharp;
using YelpSharp.Data.Options;
namespace YelpSharpTests
{
/// <summary>
/// General tests for the API.
/// </summary>
[TestClass]
public class GeneralTests
{
//--------------------------------------------------------------------------
//
// Variables
//
//--------------------------------------------------------------------------
private TestContext testContextInstance;
//--------------------------------------------------------------------------
//
// Properties
//
//--------------------------------------------------------------------------
/// <summary>
///Gets or sets the test context which provides
///information about and functionality for the current test run.
///</summary>
public TestContext TestContext
{
get
{
return testContextInstance;
}
set
{
testContextInstance = value;
}
}
//--------------------------------------------------------------------------
//
// Constructors
//
//--------------------------------------------------------------------------
public GeneralTests()
{
//
// TODO: Add constructor logic here
//
}
//--------------------------------------------------------------------------
//
// Test Methods
//
//--------------------------------------------------------------------------
#region Additional test attributes
//
// You can use the following additional attributes as you write your tests:
//
// Use ClassInitialize to run code before running the first test in the class
// [ClassInitialize()]
// public static void MyClassInitialize(TestContext testContext) { }
//
// Use ClassCleanup to run code after all tests in a class have run
// [ClassCleanup()]
// public static void MyClassCleanup() { }
//
// Use TestInitialize to run code before running each test
// [TestInitialize()]
// public void MyTestInitialize() { }
//
// Use TestCleanup to run code after each test has run
// [TestCleanup()]
// public void MyTestCleanup() { }
//
#endregion
/// <summary>
/// Basic search test to verify the API.
/// </summary>
[TestMethod]
public void BasicTest()
{
var y = new Yelp(Config.Options);
var results = y.Search("coffee", "seattle, wa").Result;
if (results.error != null)
{
Assert.Fail(results.error.text);
}
Console.WriteLine(results);
}
/// <summary>
/// Test search with location and search term
/// </summary>
[TestMethod]
public void VerifyGeneralOptions()
{
var y = new Yelp(Config.Options);
var searchOptions = new SearchOptions();
searchOptions.GeneralOptions = new GeneralOptions()
{
term = "coffee"
};
searchOptions.LocationOptions = new LocationOptions()
{
location = "seattle"
};
var results = y.Search(searchOptions).Result;
Assert.IsTrue(results.businesses != null);
Assert.IsTrue(results.businesses.Count > 0);
}
/// <summary>
/// Verify URL escaped characters do not cause search to fail
/// </summary>
[TestMethod]
public void UrlEscapedCharacters()
{
var y = new Yelp(Config.Options);
var searchOptions = new SearchOptions();
searchOptions.GeneralOptions = new GeneralOptions()
{
term = "coffee $&`:<>[]{}\"#%@/;=?\\^|~', tea"
//term = "coffee $`:<>[]{}\"#%@/;=?\\^|~', tea"
};
searchOptions.LocationOptions = new LocationOptions()
{
location = "seattle"
};
var results = y.Search(searchOptions).Result;
Assert.IsTrue(results.businesses != null);
Assert.IsTrue(results.businesses.Count > 0);
Console.WriteLine(results);
}
/// <summary>
/// Verify URL escaped characters do not cause search to fail
/// </summary>
[TestMethod]
public void VerifyTermWithEscapedCharacter()
{
var y = new Yelp(Config.Options);
var searchOptions = new SearchOptions
{
GeneralOptions = new GeneralOptions
{
term = "Frimark Keller & Associates"
},
LocationOptions = new LocationOptions
{
location = "60173"
}
};
var results = y.Search(searchOptions).Result;
Assert.IsTrue(results.businesses != null);
Assert.IsTrue(results.businesses.Count > 0);
}
/// <summary>
/// test loading a business explicitely by name
/// </summary>
[TestMethod]
public void BusinessTest()
{
var y = new Yelp(Config.Options);
var results = y.GetBusiness("yelp-san-francisco").Result;
Assert.IsTrue(results != null);
}
/// <summary>
/// perform a search with multiple categories on the general options filter
/// </summary>
[TestMethod]
public void MultipleCategories()
{
var yelp = new Yelp(Config.Options);
var searchOptions = new YelpSharp.Data.Options.SearchOptions()
{
GeneralOptions = new GeneralOptions() { category_filter = "climbing,bowling" },
LocationOptions = new LocationOptions()
{
location = "Seattle"
}
};
var results = yelp.Search(searchOptions).Result;
Assert.IsTrue(results.businesses.Count > 0);
}
/// <summary>
/// Verify the limit parameter works as expected.
/// </summary>
[TestMethod]
public void LimitTest()
{
var y = new Yelp(Config.Options);
var searchOptions = new SearchOptions()
{
GeneralOptions = new GeneralOptions()
{
term = "coffee",
limit = 15,
},
LocationOptions = new LocationOptions()
{
location = "seattle, wa"
}
};
var results = y.Search(searchOptions).Result;
if (results.error != null)
{
Assert.Fail(results.error.text);
}
if (results.businesses.Count != 15)
{
Assert.Fail(string.Format("Limit test returned {0} results instead of 15", results.businesses.Count));
}
Console.WriteLine(results);
}
[TestMethod]
public void SearchByPhoneTest()
{
var y = new Yelp(Config.Options);
var results = y.SearchByPhone("4159083801").Result;
Assert.IsNotNull(results);
Assert.IsNotNull(results.businesses);
Assert.IsNotNull(results.businesses.FirstOrDefault());
Assert.AreEqual<string>("yelp-san-francisco", results.businesses.First().id);
}
}
}