-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathBoxClientIntegrationSpecs.swift
288 lines (239 loc) · 12.9 KB
/
BoxClientIntegrationSpecs.swift
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
//
// BoxClientIntegrationSpecs.swift
// BoxSDKIntegrationTests-iOS
//
// Created by Artur Jankowski on 05/05/2022.
// Copyright © 2022 box. All rights reserved.
//
@testable import BoxSDK
import Nimble
import Quick
class BoxClientIntegrationSpecs: QuickSpec {
override class func spec() {
var client: BoxClient!
var rootFolder: Folder!
beforeSuite {
initializeClient { createdClient in client = createdClient }
createFolder(client: client, name: NameGenerator.getUniqueFolderName(for: "BoxClient")) { createdFolder in rootFolder = createdFolder }
}
afterSuite {
deleteFolder(client: client, folder: rootFolder, recursive: true)
}
describe("BoxClient") {
context("Custom API calls") {
context("get()") {
var file: File?
beforeEach {
uploadFile(client: client, fileName: IntegrationTestResources.smallPdf.fileName, toFolder: rootFolder?.id) { uploadedFile in file = uploadedFile }
}
afterEach {
deleteFile(client: client, file: file)
}
it("should make valid API call") {
guard let file = file else {
fail("An error occurred during setup initial data")
return
}
waitUntil(timeout: .seconds(Constants.Timeout.default)) { done in
client.get(url: URL.boxAPIEndpoint("/2.0/files/\(file.id)", configuration: client.configuration)) { result in
let fileResult: Result<File, BoxSDKError> = result.flatMap { ObjectDeserializer.deserialize(data: $0.body) }
switch fileResult {
case let .success(fileItem):
expect(fileItem).toNot(beNil())
expect(fileItem.id).to(equal(file.id))
expect(fileItem.name).to(equal(IntegrationTestResources.smallPdf.fileName))
case let .failure(error):
fail("Expected get call to succeed, but instead got \(error)")
}
done()
}
}
}
}
context("post()") {
var webLink: WebLink?
afterEach {
deleteWebLink(client: client, webLink: webLink)
}
it("should make valid API call") {
var body: [String: Any] = [:]
body["parent"] = ["id": rootFolder.id]
body["url"] = "https://example.com"
body["name"] = "example name"
waitUntil(timeout: .seconds(Constants.Timeout.default)) { done in
client.post(
url: URL.boxAPIEndpoint("/2.0/web_links", configuration: client.configuration),
json: body
) { result in
let webLinkResult: Result<WebLink, BoxSDKError> = result.flatMap { ObjectDeserializer.deserialize(data: $0.body) }
switch webLinkResult {
case let .success(webLinkItem):
webLink = webLinkItem
expect(webLinkItem).toNot(beNil())
expect(webLinkItem.name).to(equal("example name"))
case let .failure(error):
fail("Expected post call to succeed, but instead got \(error)")
}
done()
}
}
}
}
context("put()") {
var file: File?
let newFileName = "updatedName.pdf"
let newDescription = "Sample description"
beforeEach {
uploadFile(client: client, fileName: IntegrationTestResources.smallPdf.fileName, toFolder: rootFolder?.id) { uploadedFile in file = uploadedFile }
}
afterEach {
deleteFile(client: client, file: file)
}
it("should make valid API call") {
guard let file = file else {
fail("An error occurred during setup initial data")
return
}
var body: [String: Any] = [:]
body["name"] = newFileName
body["description"] = newDescription
waitUntil(timeout: .seconds(Constants.Timeout.default)) { done in
client.put(
url: URL.boxAPIEndpoint("/2.0/files/\(file.id)", configuration: client.configuration),
queryParameters: ["fields": "name,description"],
json: body
) { result in
let fileResult: Result<File, BoxSDKError> = result.flatMap { ObjectDeserializer.deserialize(data: $0.body) }
switch fileResult {
case let .success(fileItem):
expect(fileItem).toNot(beNil())
expect(fileItem.id).to(equal(file.id))
expect(fileItem.name).to(equal(newFileName))
expect(fileItem.description).to(equal(newDescription))
case let .failure(error):
fail("Expected put call to succeed, but instead got \(error)")
}
done()
}
}
}
}
context("delete()") {
var file: File?
beforeEach {
uploadFile(client: client, fileName: IntegrationTestResources.smallPdf.fileName, toFolder: rootFolder?.id) { uploadedFile in file = uploadedFile }
}
it("should make valid API call") {
guard let file = file else {
fail("An error occurred during setup initial data")
return
}
waitUntil(timeout: .seconds(Constants.Timeout.default)) { done in
client.delete(url: URL.boxAPIEndpoint("/2.0/files/\(file.id)", configuration: client.configuration)) { result in
if case let .failure(error) = result {
fail("Expected delete call to succeed, but instead got \(error)")
}
done()
}
}
}
}
context("options()") {
it("should make valid API call") {
var body: [String: Any] = [:]
body["parent"] = ["id": "\(rootFolder.id)"]
body["name"] = "exampleName.txt"
waitUntil(timeout: .seconds(Constants.Timeout.default)) { done in
client.options(
url: URL.boxAPIEndpoint("/2.0/files/content", configuration: client.configuration),
json: body
) { result in
if case let .failure(error) = result {
fail("Expected options call to succeed, but instead got \(error)")
}
done()
}
}
}
}
context("download()") {
var file: File?
beforeEach {
uploadFile(client: client, fileName: IntegrationTestResources.smallPdf.fileName, toFolder: rootFolder?.id) { uploadedFile in file = uploadedFile }
}
afterEach {
deleteFile(client: client, file: file)
}
it("should make valid API call") {
guard let file = file else {
fail("An error occurred during setup initial data")
return
}
let fileContent = FileUtil.getFileContent(fileName: IntegrationTestResources.smallPdf.fileName)!
let destinationURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first!.appendingPathComponent(IntegrationTestResources.smallPdf.fileName)
waitUntil(timeout: .seconds(Constants.Timeout.default)) { done in
client.download(
url: URL.boxAPIEndpoint("/2.0/files/\(file.id)/content", configuration: client.configuration),
downloadDestinationURL: destinationURL
) { result in
switch result {
case .success:
expect(FileManager().fileExists(atPath: destinationURL.path)).to(equal(true))
guard let downloadedContent = try? Data(contentsOf: destinationURL) else {
fail("Can not read downloaded file")
return
}
expect(fileContent).to(equal(downloadedContent))
case let .failure(error):
fail("Expected download call to succeed, but instead got \(error)")
}
done()
}
}
}
}
context("send()") {
var file: File?
let newFileName = "updatedName.pdf"
let newDescription = "Sample description"
beforeEach {
uploadFile(client: client, fileName: IntegrationTestResources.smallPdf.fileName, toFolder: rootFolder?.id) { uploadedFile in file = uploadedFile }
}
afterEach {
deleteFile(client: client, file: file)
}
it("should make valid API call") {
guard let file = file else {
fail("An error occurred during setup initial data")
return
}
var body: [String: Any] = [:]
body["name"] = newFileName
body["description"] = newDescription
let request = BoxRequest(
httpMethod: .put,
url: URL.boxAPIEndpoint("/2.0/files/\(file.id)", configuration: client.configuration),
queryParams: ["fields": "name,description"],
body: .jsonObject(body)
)
waitUntil(timeout: .seconds(Constants.Timeout.default)) { done in
client.send(request: request) { result in
let fileResult: Result<File, BoxSDKError> = result.flatMap { ObjectDeserializer.deserialize(data: $0.body) }
switch fileResult {
case let .success(fileItem):
expect(fileItem).toNot(beNil())
expect(fileItem.id).to(equal(file.id))
expect(fileItem.name).to(equal(newFileName))
expect(fileItem.description).to(equal(newDescription))
case let .failure(error):
fail("Expected send call to succeed, but instead got \(error)")
}
done()
}
}
}
}
}
}
}
}