-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathtest.drive.v2.ts
More file actions
125 lines (106 loc) · 3.94 KB
/
test.drive.v2.ts
File metadata and controls
125 lines (106 loc) · 3.94 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
119
120
121
122
123
124
125
// Copyright 2014 Google LLC
// 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.
import * as assert from 'assert';
import {describe, it, before, beforeEach, afterEach} from 'mocha';
import {APIEndpoint} from 'googleapis-common';
import * as nock from 'nock';
import {drive_v2, GoogleApis} from '../src';
import {Utils} from './utils';
const googleapis = new GoogleApis();
describe('drive:v2', () => {
let localDrive: drive_v2.Drive, remoteDrive: APIEndpoint;
before(async () => {
const google = new GoogleApis();
remoteDrive = await Utils.loadApi(google, 'drive', 'v2');
});
beforeEach(() => {
nock.disableNetConnect();
const google = new GoogleApis();
localDrive = google.drive('v2');
});
afterEach(() => {
nock.cleanAll();
});
it('should exist', done => {
assert.notStrictEqual(typeof googleapis.drive, null);
done();
});
it('should be a function', done => {
assert.strictEqual(typeof googleapis.drive, 'function');
done();
});
it('should create a drive object', done => {
assert.notStrictEqual(typeof localDrive, 'undefined');
assert.notStrictEqual(typeof remoteDrive, 'undefined');
done();
});
it('should be frozen (immutable)', done => {
assert.strictEqual(Object.isFrozen(localDrive), true);
assert.strictEqual(Object.isFrozen(remoteDrive), true);
done();
});
describe('.files', () => {
it('should exist', done => {
assert.notStrictEqual(typeof localDrive.files, 'undefined');
assert.notStrictEqual(typeof remoteDrive.files, 'undefined');
done();
});
it('should be an object', done => {
assert.strictEqual(typeof localDrive.files, 'object');
assert.strictEqual(typeof remoteDrive.files, 'object');
done();
});
describe('.insert', () => {
it('should exist', done => {
assert.notStrictEqual(typeof localDrive.files.insert, 'undefined');
assert.notStrictEqual(typeof remoteDrive.files.insert, 'undefined');
done();
});
it('should be a function', done => {
assert.strictEqual(typeof localDrive.files.insert, 'function');
assert.strictEqual(typeof remoteDrive.files.insert, 'function');
done();
});
it('should not return a Request object', done => {
let req = localDrive.files.insert(Utils.noop);
assert.strictEqual(req, undefined);
req = remoteDrive.files.insert(Utils.noop);
assert.strictEqual(req, undefined);
done();
});
});
describe('.get', () => {
it('should exist', () => {
assert.notStrictEqual(typeof localDrive.files.get, 'undefined');
assert.notStrictEqual(typeof remoteDrive.files.get, 'undefined');
});
it('should be a function', () => {
assert.strictEqual(typeof localDrive.files.get, 'function');
assert.strictEqual(typeof remoteDrive.files.get, 'function');
});
it('should not return a Request object', () => {
let req = localDrive.files.get({fileId: '123'}, Utils.noop);
assert.strictEqual(req, undefined);
req = remoteDrive.files.get({fileId: '123'}, Utils.noop);
assert.strictEqual(req, undefined);
});
});
});
describe('.files.list()', () => {
it('should not return missing param error', async () => {
nock(Utils.baseUrl).get('/drive/v2/files?q=hello').times(2).reply(200);
await localDrive.files.list({q: 'hello'});
await remoteDrive.files.list({q: 'hello'});
});
});
});