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
// Copyright 2016 Claus Matzinger
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//    http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

extern crate hyper;
extern crate serde;
#[macro_use]
extern crate serde_json;
#[macro_use]
extern crate serde_derive;

pub mod error;
pub mod row;
pub mod blob;
pub mod dbcluster;
pub mod sql;
mod rowiterator;
mod backend;
mod common;


use dbcluster::DBCluster;
use backend::DefaultHTTPBackend;

pub type Cluster = DBCluster<DefaultHTTPBackend>;
pub type NoParams = sql::Nothing;

#[deprecated(since="1.0.0", note="Please use `NoParams`")]
pub type Nothing = NoParams;

#[cfg(test)]
mod tests {
    extern crate hex;
    use super::Nothing;
    use backend::{Backend, BackendResult};
    use sql::QueryRunner;
    use blob::{BlobContainer, BlobRef};
    use super::error::{BackendError, BlobError, CrateDBError};
    use super::DBCluster;
    use super::row::{Row, ByIndex};
    use std::io::{Read, Cursor};
    use common::sha1_digest;
    use self::hex::FromHex;
    use std::rc::Rc;

    struct FailingBackend {
        failure: BackendError,
    }

    #[derive(PartialEq, Clone)]
    struct MockBlob {
        contents: Vec<u8>,
        sha1: Vec<u8>,
        bucket: String,
    }


    impl FailingBackend {
        pub fn new(error: BackendError) -> FailingBackend {
            FailingBackend { failure: error }
        }
    }


    impl Backend for FailingBackend {
        fn execute(&self,
                   to: Option<String>,
                   payload: String)
                   -> Result<(BackendResult, String), BackendError> {
            Err(self.failure.clone())
        }

        fn upload_blob(&self,
                       to: Option<String>,
                       bucket: &str,
                       sha1: &[u8],
                       f: &mut Read)
                       -> Result<BackendResult, BackendError> {
            Err(self.failure.clone())
        }

        fn delete_blob(&self,
                       to: Option<String>,
                       bucket: &str,
                       sha1: &[u8])
                       -> Result<BackendResult, BackendError> {
            Err(self.failure.clone())
        }

        fn fetch_blob(&self,
                      to: Option<String>,
                      bucket: &str,
                      sha1: &[u8])
                      -> Result<(BackendResult, Box<Read>), BackendError> {
            Err(self.failure.clone())
        }
    }


    struct MockBackend {
        response: String,
        blobs: Vec<MockBlob>,
        result: BackendResult,
    }

    impl MockBackend {
        pub fn new(response: String, blobs: Vec<MockBlob>, result: BackendResult) -> MockBackend {
            MockBackend {
                response: response,
                blobs: blobs,
                result: result,
            }
        }
    }


    impl Backend for MockBackend {
        fn execute(&self,
                   to: Option<String>,
                   payload: String)
                   -> Result<(BackendResult, String), BackendError> {
            let _ = (to, payload);
            Ok((self.result.clone(), self.response.clone()))
        }

        fn upload_blob(&self,
                       to: Option<String>,
                       bucket: &str,
                       sha1: &[u8],
                       f: &mut Read)
                       -> Result<BackendResult, BackendError> {
            let mut buffer = Vec::new();
            let _ = f.read_to_end(&mut buffer);
            let sha1_v = sha1.to_vec();

            match self.result {
                BackendResult::Ok => {
                    if let Ok(blob_pos) = self.blobs.binary_search_by(|e| e.sha1.cmp(&sha1_v)) {
                        let blob = &self.blobs[blob_pos];
                        assert_eq!(blob.sha1, sha1_v);
                        assert_eq!(blob.bucket, bucket);
                        assert_eq!(blob.bucket, bucket);
                    }
                }
                _ => {}
            }
            Ok(self.result.clone())
        }

        fn delete_blob(&self,
                       to: Option<String>,
                       bucket: &str,
                       sha1: &[u8])
                       -> Result<BackendResult, BackendError> {
            let sha1_v = sha1.to_vec();

            match self.result {
                BackendResult::Ok => {
                    if let Ok(blob_pos) = self.blobs.binary_search_by(|e| e.sha1.cmp(&sha1_v)) {
                        let blob = &self.blobs[blob_pos];
                        assert_eq!(blob.sha1, sha1_v);
                        assert_eq!(blob.bucket, bucket);
                    }
                }
                _ => {}
            }
            Ok(self.result.clone())
        }

        fn fetch_blob(&self,
                      to: Option<String>,
                      bucket: &str,
                      sha1: &[u8])
                      -> Result<(BackendResult, Box<Read>), BackendError> {
            let sha1_v = sha1.to_vec();
            match self.result {
                BackendResult::Ok => {
                    if let Ok(blob_pos) = self.blobs.binary_search_by(|e| e.sha1.cmp(&sha1_v)) {
                        let blob = &self.blobs[blob_pos];
                        assert_eq!(blob.sha1, sha1_v);
                        assert_eq!(blob.bucket, bucket);
                        return Ok((BackendResult::Ok,
                                   Box::new(Cursor::new(blob.contents.clone()))));
                    }
                }
                _ => {}
            }
            Ok((self.result.clone(), Box::new(Cursor::new(vec![]))))

        }
    }


    fn new_cluster(response: &str, result: BackendResult) -> DBCluster<MockBackend> {
        new_cluster_with_blobs(response, vec![], result)
    }

    fn new_cluster_with_blobs(response: &str,
                              blobs: Vec<MockBlob>,
                              result: BackendResult)
                              -> DBCluster<MockBackend> {
        DBCluster::with_custom_backend(vec![], MockBackend::new(response.to_owned(), blobs, result))
    }

    fn new_failing_cluster(error: BackendError) -> DBCluster<FailingBackend> {
        DBCluster::with_custom_backend(vec![], FailingBackend::new(error))
    }


    #[derive(Serialize)]
    struct TestObj {
        a: i32,
        b: String,
        c: f64,
    }


    #[test]
    fn blob_upload() {
        let blob_a = vec![0x11, 0x12, 0x34, 0x53, 0x63, 0xAA, 0xFF];
        let bucket = "bucket".to_string();
        let expected_sha1 = sha1_digest(&mut Cursor::new(&blob_a)).unwrap();
        let blobs = vec![MockBlob {
                             sha1: expected_sha1.clone(),
                             contents: blob_a.clone(),
                             bucket: bucket.clone(),
                         }];
        let cluster = new_cluster_with_blobs("", blobs, BackendResult::Ok);

        let result = cluster
            .put(bucket.clone(), &mut Cursor::new(&blob_a))
            .unwrap();

        assert_eq!(result.sha1, expected_sha1);
        assert_eq!(result.table, bucket);
    }

    #[test]
    fn error_blob_upload() {
        let blob_a = vec![0x11, 0x12, 0x34, 0x53, 0x63, 0xAA, 0xFF];
        let bucket = "bucket".to_string();
        let expected_sha1 = sha1_digest(&mut Cursor::new(&blob_a)).unwrap();
        let blobs = vec![MockBlob {
                             sha1: expected_sha1.clone(),
                             contents: blob_a.clone(),
                             bucket: bucket.clone(),
                         }];

        let cluster = new_cluster_with_blobs("", vec![], BackendResult::NotFound);
        let error = cluster
            .put(bucket.clone(), &mut Cursor::new(&blob_a))
            .unwrap_err();
        match error {
            BlobError::Action(crate_error) => {
                assert_eq!(crate_error.message, "Could not upload BLOB. Not found.");
                assert_eq!(crate_error.code, "404");
            }
            _ => panic!("Unexpected Error was returned"),
        }
    }

    #[test]
    fn blob_download() {
        let blob_a = vec![0x11, 0x12, 0x34, 0x53, 0x63, 0xAA, 0xFF];
        let bucket = "bucket".to_string();
        let expected_sha1 = sha1_digest(&mut Cursor::new(&blob_a)).unwrap();
        let blobs = vec![MockBlob {
                             sha1: expected_sha1.clone(),
                             contents: blob_a.clone(),
                             bucket: bucket.clone(),
                         }];

        let blobref = BlobRef {
            sha1: expected_sha1.clone(),
            table: bucket.clone(),
        };

        let cluster = new_cluster_with_blobs("", blobs, BackendResult::Ok);
        let mut result = cluster.get(&blobref).unwrap();
        let mut buffer: Vec<u8> = vec![];
        let _ = result.read_to_end(&mut buffer);
        assert_eq!(buffer, blob_a);
    }

    #[test]
    fn error_blob_download() {
        let sha1 = "4a756ca07e9487f482465a99e8286abc86ba4dc7";
        let expected_sha1 = Vec::from_hex(sha1).unwrap();
        let bucket = "bucket".to_string();
        let blobref = BlobRef {
            sha1: expected_sha1.clone(),
            table: bucket.clone(),
        };

        let cluster = new_cluster_with_blobs("", vec![], BackendResult::NotFound);
        let error = cluster.get(&blobref).err();
        match error {
            Some(BlobError::Action(crate_error)) => {
                assert_eq!(crate_error.message, "Could not fetch BLOB. Not found.");
                assert_eq!(crate_error.code, "404");
            }
            _ => panic!("Unexpected Error was returned"),
        }
    }

    #[test]
    fn blob_delete() {
        let blob_a = vec![0x11, 0x12, 0x34, 0x53, 0x63, 0xAA, 0xFF];
        let bucket = "bucket".to_string();
        let expected_sha1 = sha1_digest(&mut Cursor::new(&blob_a)).unwrap();
        let blobs = vec![MockBlob {
                             sha1: expected_sha1.clone(),
                             contents: blob_a.clone(),
                             bucket: bucket.clone(),
                         }];

        let blobref = BlobRef {
            sha1: expected_sha1.clone(),
            table: bucket.clone(),
        };

        let cluster = new_cluster_with_blobs("", blobs, BackendResult::Ok);

        assert!(cluster.delete(blobref).is_ok());
    }

    #[test]
    fn error_blob_delete() {
        let sha1 = "4a756ca07e9487f482465a99e8286abc86ba4dc7";
        let expected_sha1 = Vec::from_hex(sha1).unwrap();
        let bucket = "bucket".to_string();
        let blobref = BlobRef {
            sha1: expected_sha1.clone(),
            table: bucket.clone(),
        };

        let cluster = new_cluster_with_blobs("", vec![], BackendResult::NotFound);
        let error = cluster.delete(blobref).unwrap_err();
        match error {
            BlobError::Action(crate_error) => {
                assert_eq!(crate_error.message, "Could not delete BLOB. Not found.");
                assert_eq!(crate_error.code, "404");
            }
            _ => panic!("Unexpected Error was returned"),
        }
    }

    #[test]
    fn blob_list() {
        let sha1 = "4a756ca07e9487f482465a99e8286abc86ba4dc7";
        let expected_sha1 = Vec::from_hex(sha1).unwrap();
        let bucket = "bucket".to_string();
        let blobref = BlobRef {
            sha1: expected_sha1.clone(),
            table: bucket.clone(),
        };

        let cluster = new_cluster_with_blobs(&format!("{{\"cols\":[\"digest\"],\"rows\":[[\"{}\"]],\"rowcount\":1,\"duration\":0.206}}",
                                                     sha1),
                                             vec![],
                                             BackendResult::Ok);

        let expected = vec![blobref.clone()];
        assert_eq!(cluster.list(bucket).unwrap(), expected);
    }

    #[test]
    fn error_blob_list() {
        let bucket = "bucket".to_string();
        let cluster = new_cluster_with_blobs(&format!("{{\"error\":{{\"message\":\"SQLActionException[TableUnknownException: Table 'blob.{}' unknown]\",\"code\":4041}}}}",
                                                     bucket),
                                             vec![],
                                             BackendResult::NotFound);
        let error = cluster.list(bucket.as_ref()).unwrap_err();
        match error {
            BlobError::Action(crate_error) => {
                assert_eq!(crate_error.message,
                           format!("SQLActionException[TableUnknownException: Table 'blob.{}' unknown]",
                                   bucket));
                assert_eq!(crate_error.code, "4041");

            }
            _ => panic!("Unexpected Error was returned"),
        }
    }


    #[test]
    fn parameter_query() {
        let cluster = new_cluster("{\"cols\":[\"name\"],\"rows\":[[\"A\"]],\"rowcount\":1,\
                                       \"duration\":0.206}",
                                  BackendResult::Ok);
        let result = cluster.query("select name from mytable where a = ?",
                                   Some(Box::new("hello")));
        assert!(result.is_ok());
        let (t, result) = result.unwrap();
        assert_eq!(t, 0.206f64);
        let rows: Vec<Row> = result.collect();
        assert_eq!(rows.len(), 1);
        assert_eq!(rows.get(0).unwrap().as_string(0).unwrap(), "A".to_owned());

        let result = cluster.query("insert into mytable (v1, v2) values (?, ?)",
                                   Some(Box::new((1,
                                                  TestObj {
                                                      a: 1,
                                                      b: "asd".to_string(),
                                                      c: 3.14,
                                                  }))));
        assert!(result.is_ok());
        let (t, result) = result.unwrap();
        assert_eq!(t, 0.206f64);
        assert_eq!(result.len(), 1);
        assert_eq!(rows.get(0).unwrap().as_string(0).unwrap(), "A".to_owned());
    }

    #[test]
    fn no_parameter_query() {
        let cluster = new_cluster("{\"cols\":[\"name\"],\"rows\":[[\"A\"]],\"rowcount\":1,\
                                       \"duration\":0.206}",
                                  BackendResult::Ok);
        let result = cluster.query("select name from mytable where a = 'hello'",
                                   None::<Box<Nothing>>);
        assert!(result.is_ok());
        let (t, result) = result.unwrap();
        assert_eq!(t, 0.206f64);
        let rows: Vec<Row> = result.collect();
        assert_eq!(rows.len(), 1);
        assert_eq!(rows.get(0).unwrap().as_string(0).unwrap(), "A".to_owned());
    }



    #[test]
    fn bulk_parameter_query() {
        let cluster = new_cluster("{\"cols\": [], \"results\":[{\"rowcount\": 1}, \
                                       {\"rowcount\": 2}, {\"rowcount\": 3}],
                                       \
                                       \"duration\":0.206}",
                                  BackendResult::Ok);
        let result = cluster.bulk_query("update mytable set v = 1 where a = ?",
                                        Box::new(vec!["hello", "world", "lalala"]));
        assert!(result.is_ok());
        let (t, result) = result.unwrap();
        assert_eq!(t, 0.206f64);
        assert_eq!(result.len(), 3);
        assert_eq!(result.get(0).unwrap(), &1i64);
        assert_eq!(result.get(1).unwrap(), &2i64);
        assert_eq!(result.get(2).unwrap(), &3i64);
    }

    #[test]
    fn error_bulk_parameter_query() {
        let cluster = new_cluster("{\"error\":{\"message\":\"ReadOnlyException[Only read \
                                       operations are allowed on this node]\",\"code\":5000}}",
                                  BackendResult::Error);
        let result = cluster.bulk_query("select name from mytable where a = ?",
                                        Box::new(vec!["hello", "world", "lalala"]));
        assert!(result.is_err());
        println!("here");
        let e = result.err().unwrap();
        let expected = CrateDBError::new("ReadOnlyException[Only read operations are allowed on \
                                          this node]",
                                         "5000");
        assert_eq!(e, expected);

    }

    #[test]
    fn error_parameter_query() {
        let cluster = new_cluster("{\"error\":{\"message\":\"ReadOnlyException[Only read \
                                       operations are allowed on this node]\",\"code\":5000}}",
                                  BackendResult::Error);
        let result = cluster.query("create table a(a string, b long)", None::<Box<Nothing>>);
        assert!(result.is_err());
        let e = result.err().unwrap();
        let expected = CrateDBError::new("ReadOnlyException[Only read operations are allowed on \
                                          this node]",
                                         "5000");
        assert_eq!(e, expected);
    }

    #[test]
    fn non_json_backend_error() {
        let cluster = new_cluster("this is wrong my friend :{", BackendResult::Ok);


        let result = cluster.query("select * from sys.nodes", None::<Box<Nothing>>);
        assert!(result.is_err());
        let e = result.err().unwrap();
        let expected = CrateDBError::new("Invalid JSON was returned: this is wrong my friend :{",
                                         "200");
        assert_eq!(e, expected);

        // bulk queries:
        let result = cluster.bulk_query("select * from sys.nodes", Box::new("{}"));
        assert!(result.is_err());
        let e = result.err().unwrap();
        let expected = CrateDBError::new("Invalid JSON was returned: this is wrong my friend :{",
                                         "200");
        assert_eq!(e, expected);

    }
}