-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathintegration_tests.rs
692 lines (615 loc) · 22.5 KB
/
integration_tests.rs
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
extern crate influxdb;
#[path = "./utilities.rs"]
mod utilities;
use serde::Deserialize;
use utilities::{
assert_result_err, assert_result_ok, create_client, create_db, delete_db, run_test,
};
use influxdb::InfluxDbWriteable;
use influxdb::{Client, Error, ReadQuery, Timestamp};
/// INTEGRATION TEST
///
/// This test case tests whether the InfluxDB server can be connected to and gathers info about it - tested with async_std
#[async_std::test]
#[cfg(not(tarpaulin_include))]
async fn test_ping_influx_db_async_std() {
let client = create_client("notusedhere");
let result = client.ping().await;
assert_result_ok(&result);
let (build, version) = result.unwrap();
assert!(!build.is_empty(), "Build should not be empty");
assert!(!version.is_empty(), "Build should not be empty");
println!("build: {} version: {}", build, version);
}
/// INTEGRATION TEST
///
/// This test case tests whether the InfluxDB server can be connected to and gathers info about it - tested with tokio 1.0
#[tokio::test]
#[cfg(not(any(tarpaulin_include, feature = "hyper-client")))]
async fn test_ping_influx_db_tokio() {
let client = create_client("notusedhere");
let result = client.ping().await;
assert_result_ok(&result);
let (build, version) = result.unwrap();
assert!(!build.is_empty(), "Build should not be empty");
assert!(!version.is_empty(), "Build should not be empty");
println!("build: {} version: {}", build, version);
}
/// INTEGRATION TEST
///
/// This test case tests connection error
#[async_std::test]
#[cfg(not(tarpaulin_include))]
async fn test_connection_error() {
let test_name = "test_connection_error";
let client =
Client::new("http://127.0.0.1:10086", test_name).with_auth("nopriv_user", "password");
let read_query = ReadQuery::new("SELECT * FROM weather");
let read_result = client.query(read_query).await;
assert_result_err(&read_result);
match read_result {
Err(Error::ConnectionError { .. }) => {}
_ => panic!(
"Should cause a ConnectionError: {}",
read_result.unwrap_err()
),
}
}
/// INTEGRATION TEST
///
/// This test case tests the Authentication
#[async_std::test]
#[cfg(not(tarpaulin_include))]
async fn test_authed_write_and_read() {
const TEST_NAME: &str = "test_authed_write_and_read";
run_test(
|| async move {
let client =
Client::new("http://127.0.0.1:9086", TEST_NAME).with_auth("admin", "password");
let query = format!("CREATE DATABASE {}", TEST_NAME);
client
.query(ReadQuery::new(query))
.await
.expect("could not setup db");
let client =
Client::new("http://127.0.0.1:9086", TEST_NAME).with_auth("admin", "password");
let write_query = Timestamp::Hours(11)
.into_query("weather")
.add_field("temperature", 82);
let write_result = client.query(write_query).await;
assert_result_ok(&write_result);
let read_query = ReadQuery::new("SELECT * FROM weather");
let read_result = client.query(read_query).await;
assert_result_ok(&read_result);
assert!(
!read_result.unwrap().contains("error"),
"Data contained a database error"
);
},
|| async move {
let client =
Client::new("http://127.0.0.1:9086", TEST_NAME).with_auth("admin", "password");
let query = format!("DROP DATABASE {}", TEST_NAME);
client
.query(ReadQuery::new(query))
.await
.expect("could not clean up db");
},
)
.await;
}
/// INTEGRATION TEST
///
/// This test case tests the Authentication
#[async_std::test]
#[cfg(not(tarpaulin_include))]
async fn test_wrong_authed_write_and_read() {
const TEST_NAME: &str = "test_wrong_authed_write_and_read";
run_test(
|| async move {
let client =
Client::new("http://127.0.0.1:9086", TEST_NAME).with_auth("admin", "password");
let query = format!("CREATE DATABASE {}", TEST_NAME);
client
.query(ReadQuery::new(query))
.await
.expect("could not setup db");
let client =
Client::new("http://127.0.0.1:9086", TEST_NAME).with_auth("wrong_user", "password");
let write_query = Timestamp::Hours(11)
.into_query("weather")
.add_field("temperature", 82);
let write_result = client.query(write_query).await;
assert_result_err(&write_result);
match write_result {
Err(Error::ApiError(code)) => {
dbg!(code);
}
_ => panic!(
"Should be an AuthorizationError: {}",
write_result.unwrap_err()
),
}
let read_query = ReadQuery::new("SELECT * FROM weather");
let read_result = client.query(read_query).await;
assert_result_err(&read_result);
match read_result {
Err(Error::ApiError(code)) => {
dbg!(code);
}
_ => panic!(
"Should be an AuthorizationError: {}",
read_result.unwrap_err()
),
}
let client = Client::new("http://127.0.0.1:9086", TEST_NAME)
.with_auth("nopriv_user", "password");
let read_query = ReadQuery::new("SELECT * FROM weather");
let read_result = client.query(read_query).await;
assert_result_err(&read_result);
match read_result {
Err(Error::ApiError(code)) => {
dbg!(code);
}
_ => panic!(
"Should be an AuthenticationError: {}",
read_result.unwrap_err()
),
}
},
|| async move {
let client =
Client::new("http://127.0.0.1:9086", TEST_NAME).with_auth("admin", "password");
let query = format!("DROP DATABASE {}", TEST_NAME);
client
.query(ReadQuery::new(query))
.await
.expect("could not clean up db");
},
)
.await;
}
/// INTEGRATION TEST
///
/// This test case tests the Authentication
#[async_std::test]
#[cfg(not(tarpaulin_include))]
async fn test_non_authed_write_and_read() {
const TEST_NAME: &str = "test_non_authed_write_and_read";
run_test(
|| async move {
let client =
Client::new("http://127.0.0.1:9086", TEST_NAME).with_auth("admin", "password");
let query = format!("CREATE DATABASE {}", TEST_NAME);
client
.query(ReadQuery::new(query))
.await
.expect("could not setup db");
let non_authed_client = Client::new("http://127.0.0.1:9086", TEST_NAME);
let write_query = Timestamp::Hours(11)
.into_query("weather")
.add_field("temperature", 82);
let write_result = non_authed_client.query(write_query).await;
assert_result_err(&write_result);
match write_result {
Err(Error::ApiError(code)) => {
dbg!(code);
}
_ => panic!(
"Should be an AuthorizationError: {}",
write_result.unwrap_err()
),
}
let read_query = ReadQuery::new("SELECT * FROM weather");
let read_result = non_authed_client.query(read_query).await;
assert_result_err(&read_result);
match read_result {
Err(Error::ApiError(code)) => {
dbg!(code);
}
_ => panic!(
"Should be an AuthorizationError: {}",
read_result.unwrap_err()
),
}
},
|| async move {
let client =
Client::new("http://127.0.0.1:9086", TEST_NAME).with_auth("admin", "password");
let query = format!("DROP DATABASE {}", TEST_NAME);
client
.query(ReadQuery::new(query))
.await
.expect("could not clean up db");
},
)
.await;
}
/// INTEGRATION TEST
///
/// This integration tests that writing data and retrieving the data again is working
#[async_std::test]
#[cfg(not(tarpaulin_include))]
async fn test_write_and_read_field() {
const TEST_NAME: &str = "test_write_field";
run_test(
|| async move {
create_db(TEST_NAME).await.expect("could not setup db");
let client = create_client(TEST_NAME);
let write_query = Timestamp::Hours(11)
.into_query("weather")
.add_field("temperature", 82);
let write_result = client.query(write_query).await;
assert_result_ok(&write_result);
let read_query = ReadQuery::new("SELECT * FROM weather");
let read_result = client.query(read_query).await;
assert_result_ok(&read_result);
assert!(
!read_result.unwrap().contains("error"),
"Data contained a database error"
);
},
|| async move {
delete_db(TEST_NAME).await.expect("could not clean up db");
},
)
.await;
}
/// INTEGRATION TEST
///
/// This test case tests the authentication on json reads
#[async_std::test]
#[cfg(feature = "use-serde")]
#[cfg(not(tarpaulin_include))]
async fn test_json_non_authed_read() {
const TEST_NAME: &str = "test_json_non_authed_read";
run_test(
|| async move {
let client =
Client::new("http://127.0.0.1:9086", TEST_NAME).with_auth("admin", "password");
let query = format!("CREATE DATABASE {}", TEST_NAME);
client
.query(ReadQuery::new(query))
.await
.expect("could not setup db");
let non_authed_client = Client::new("http://127.0.0.1:9086", TEST_NAME);
let read_query = ReadQuery::new("SELECT * FROM weather");
let read_result = non_authed_client.json_query(read_query).await;
assert_result_err(&read_result);
match read_result {
Err(Error::ApiError(code)) => {
dbg!(code);
}
_ => panic!(
"Should be a AuthorizationError: {}",
read_result.unwrap_err()
),
}
},
|| async move {
let client =
Client::new("http://127.0.0.1:9086", TEST_NAME).with_auth("admin", "password");
let query = format!("DROP DATABASE {}", TEST_NAME);
client
.query(ReadQuery::new(query))
.await
.expect("could not clean up db");
},
)
.await
}
/// INTEGRATION TEST
///
/// This test case tests the authentication on json reads
#[async_std::test]
#[cfg(feature = "use-serde")]
#[cfg(not(tarpaulin_include))]
async fn test_json_authed_read() {
const TEST_NAME: &str = "test_json_authed_read";
run_test(
|| async move {
let client =
Client::new("http://127.0.0.1:9086", TEST_NAME).with_auth("admin", "password");
let query = format!("CREATE DATABASE {}", TEST_NAME);
client
.query(ReadQuery::new(query))
.await
.expect("could not setup db");
let read_query = ReadQuery::new("SELECT * FROM weather");
let read_result = client.json_query(read_query).await;
assert_result_ok(&read_result);
},
|| async move {
let client =
Client::new("http://127.0.0.1:9086", TEST_NAME).with_auth("admin", "password");
let query = format!("DROP DATABASE {}", TEST_NAME);
client
.query(ReadQuery::new(query))
.await
.expect("could not clean up db");
},
)
.await
}
/// INTEGRATION TEST
///
/// This integration tests that writing data and retrieving the data again is working
#[async_std::test]
#[cfg(feature = "use-serde")]
#[cfg(not(tarpaulin_include))]
async fn test_write_and_read_option() {
use serde::Deserialize;
const TEST_NAME: &str = "test_write_and_read_option";
run_test(
|| {
async move {
create_db(TEST_NAME).await.expect("could not setup db");
let client = create_client(TEST_NAME);
// Todo: Convert this to derive based insert for easier comparison of structs
let write_query = Timestamp::Hours(11)
.into_query("weather")
.add_field("temperature", 82)
.add_field("wind_strength", <Option<u64>>::None);
let write_result = client.query(write_query).await;
assert_result_ok(&write_result);
#[derive(Deserialize, Debug, PartialEq)]
struct Weather {
time: String,
// different order to verify field names
// are being used instead of just order
wind_strength: Option<u64>,
temperature: i32,
}
let query = ReadQuery::new("SELECT time, temperature, wind_strength FROM weather");
let result = client
.json_query(query)
.await
.and_then(|mut db_result| db_result.deserialize_next::<Weather>());
assert_result_ok(&result);
assert_eq!(
result.unwrap().series[0].values[0],
Weather {
time: "1970-01-01T11:00:00Z".to_string(),
temperature: 82,
wind_strength: None,
}
);
}
},
|| async move {
delete_db("test_write_and_read_option")
.await
.expect("could not clean up db");
},
)
.await;
}
/// INTEGRATION TEST
///
/// This test case tests whether JSON can be decoded from a InfluxDB response and whether that JSON
/// is equal to the data which was written to the database
#[async_std::test]
#[cfg(feature = "use-serde")]
#[cfg(not(tarpaulin_include))]
async fn test_json_query() {
use serde::Deserialize;
const TEST_NAME: &str = "test_json_query";
run_test(
|| async move {
create_db(TEST_NAME).await.expect("could not setup db");
let client = create_client(TEST_NAME);
let write_query = Timestamp::Hours(11)
.into_query("weather")
.add_field("temperature", 82);
let write_result = client.query(write_query).await;
assert_result_ok(&write_result);
#[derive(Deserialize, Debug, PartialEq)]
struct Weather {
time: String,
temperature: i32,
}
let query = ReadQuery::new("SELECT * FROM weather");
let result = client
.json_query(query)
.await
.and_then(|mut db_result| db_result.deserialize_next::<Weather>());
assert_result_ok(&result);
assert_eq!(
result.unwrap().series[0].values[0],
Weather {
time: "1970-01-01T11:00:00Z".to_string(),
temperature: 82
}
);
},
|| async move {
delete_db(TEST_NAME).await.expect("could not clean up db");
},
)
.await;
}
/// INTEGRATION TEST
///
/// This test case tests whether the response to a GROUP BY can be parsed by
/// deserialize_next_tagged into a tags struct
#[async_std::test]
#[cfg(feature = "use-serde")]
#[cfg(not(tarpaulin_include))]
async fn test_json_query_tagged() {
use serde::Deserialize;
const TEST_NAME: &str = "test_json_query_tagged";
run_test(
|| async move {
create_db(TEST_NAME).await.expect("could not setup db");
let client = create_client(TEST_NAME);
let write_query = Timestamp::Hours(11)
.into_query("weather")
.add_tag("location", "London")
.add_field("temperature", 82);
let write_result = client.query(write_query).await;
assert_result_ok(&write_result);
#[derive(Deserialize, Debug, PartialEq)]
struct WeatherMeta {
location: String,
}
#[derive(Deserialize, Debug, PartialEq)]
struct Weather {
time: String,
temperature: i32,
}
let query = ReadQuery::new("SELECT * FROM weather GROUP BY location");
let result = client.json_query(query).await.and_then(|mut db_result| {
db_result.deserialize_next_tagged::<WeatherMeta, Weather>()
});
assert_result_ok(&result);
let result = result.unwrap();
assert_eq!(
result.series[0].tags,
WeatherMeta {
location: "London".to_string(),
}
);
assert_eq!(
result.series[0].values[0],
Weather {
time: "1970-01-01T11:00:00Z".to_string(),
temperature: 82
}
);
},
|| async move {
delete_db(TEST_NAME).await.expect("could not clean up db");
},
)
.await;
}
/// INTEGRATION TEST
///
/// This test case tests whether JSON can be decoded from a InfluxDB response and wether that JSON
/// is equal to the data which was written to the database
/// (tested with tokio)
#[tokio::test]
#[cfg(all(
feature = "use-serde",
not(any(tarpaulin_include, feature = "hyper-client"))
))]
async fn test_json_query_vec() {
use serde::Deserialize;
const TEST_NAME: &str = "test_json_query_vec";
run_test(
|| async move {
create_db(TEST_NAME).await.expect("could not setup db");
let client = create_client(TEST_NAME);
let write_query1 = Timestamp::Hours(11)
.into_query("temperature_vec")
.add_field("temperature", 16);
let write_query2 = Timestamp::Hours(12)
.into_query("temperature_vec")
.add_field("temperature", 17);
let write_query3 = Timestamp::Hours(13)
.into_query("temperature_vec")
.add_field("temperature", 18);
let _write_result = client.query(write_query1).await;
let _write_result2 = client.query(write_query2).await;
let _write_result2 = client.query(write_query3).await;
#[derive(Deserialize, Debug, PartialEq)]
struct Weather {
time: String,
temperature: i32,
}
let query = ReadQuery::new("SELECT * FROM temperature_vec");
let result = client
.json_query(query)
.await
.and_then(|mut db_result| db_result.deserialize_next::<Weather>());
assert_result_ok(&result);
assert_eq!(result.unwrap().series[0].values.len(), 3);
},
|| async move {
delete_db(TEST_NAME).await.expect("could not clean up db");
},
)
.await;
}
/// INTEGRATION TEST
///
/// This integration test tests whether using the wrong query method fails building the query
#[async_std::test]
#[cfg(feature = "use-serde")]
#[cfg(not(tarpaulin_include))]
async fn test_serde_multi_query() {
use serde::Deserialize;
const TEST_NAME: &str = "test_serde_multi_query";
run_test(
|| async move {
create_db(TEST_NAME).await.expect("could not setup db");
#[derive(Deserialize, Debug, PartialEq)]
struct Temperature {
time: String,
temperature: i32,
}
#[derive(Deserialize, Debug, PartialEq)]
struct Humidity {
time: String,
humidity: i32,
}
let client = create_client(TEST_NAME);
let write_query = Timestamp::Hours(11)
.into_query("temperature")
.add_field("temperature", 16);
let write_query2 = Timestamp::Hours(11)
.into_query("humidity")
.add_field("humidity", 69);
let write_result = client.query(write_query).await;
let write_result2 = client.query(write_query2).await;
assert_result_ok(&write_result);
assert_result_ok(&write_result2);
let result = client
.json_query(
ReadQuery::new("SELECT * FROM temperature").add_query("SELECT * FROM humidity"),
)
.await
.and_then(|mut db_result| {
let temp = db_result.deserialize_next::<Temperature>()?;
let humidity = db_result.deserialize_next::<Humidity>()?;
Ok((temp, humidity))
});
assert_result_ok(&result);
let (temp, humidity) = result.unwrap();
assert_eq!(
temp.series[0].values[0],
Temperature {
time: "1970-01-01T11:00:00Z".to_string(),
temperature: 16
},
);
assert_eq!(
humidity.series[0].values[0],
Humidity {
time: "1970-01-01T11:00:00Z".to_string(),
humidity: 69
}
);
},
|| async move {
delete_db(TEST_NAME).await.expect("could not clean up db");
},
)
.await;
}
/// INTEGRATION TEST
///
/// This integration test tests whether using the wrong query method fails building the query
#[async_std::test]
#[cfg(feature = "use-serde")]
#[cfg(not(tarpaulin_include))]
async fn test_wrong_query_errors() {
let client = create_client("test_name");
let result = client
.json_query(ReadQuery::new("CREATE DATABASE this_should_fail"))
.await;
assert!(
result.is_err(),
"Should only build SELECT and SHOW queries."
);
}