Ver código fonte

Added real Core to Google Drive unit tests.

Harry Hedger 9 anos atrás
pai
commit
be1bb7bb5d
1 arquivos alterados com 7 adições e 6 exclusões
  1. 7 6
      test/unit/GoogleDrive.spec.js

+ 7 - 6
test/unit/GoogleDrive.spec.js

@@ -1,5 +1,6 @@
 import test from 'tape'
 import test from 'tape'
 import nock from 'nock'
 import nock from 'nock'
+import Core from '../../src/core/Core'
 import Utils from '../../src/core/Utils'
 import Utils from '../../src/core/Utils'
 import Google from '../../src/plugins/GoogleDrive'
 import Google from '../../src/plugins/GoogleDrive'
 
 
@@ -21,7 +22,7 @@ test('checkAuthentication success', function (t) {
       isAuthenticated: true
       isAuthenticated: true
     })
     })
 
 
-  var core = Object.assign({}, defaultCore)
+  var core = new Core()
 
 
   var GoogleDrive = new Google(core, {host: 'http://localhost:3020'})
   var GoogleDrive = new Google(core, {host: 'http://localhost:3020'})
 
 
@@ -39,7 +40,7 @@ test('checkAuthentication fail', function (t) {
       isAuthenticated: false
       isAuthenticated: false
     })
     })
 
 
-  var core = Object.assign({}, defaultCore)
+  var core = new Core()
 
 
   var GoogleDrive = new Google(core, {host: 'http://localhost:3020'})
   var GoogleDrive = new Google(core, {host: 'http://localhost:3020'})
 
 
@@ -58,7 +59,7 @@ test('getFile: success', function (t) {
       id: '12345'
       id: '12345'
     })
     })
 
 
-  var core = Object.assign({}, defaultCore)
+  var core = new Core()
 
 
   var GoogleDrive = new Google(core, {host: 'http://localhost:3020'})
   var GoogleDrive = new Google(core, {host: 'http://localhost:3020'})
 
 
@@ -70,7 +71,7 @@ test('getFile: success', function (t) {
 })
 })
 
 
 test('getFile: fileId not a string', function (t) {
 test('getFile: fileId not a string', function (t) {
-  var core = Object.assign({}, defaultCore)
+  var core = new Core()
 
 
   var GoogleDrive = new Google(core, {host: 'http://localhost:3020'})
   var GoogleDrive = new Google(core, {host: 'http://localhost:3020'})
 
 
@@ -96,7 +97,7 @@ test('getFolder: success', function (t) {
     }]
     }]
   })
   })
 
 
-  var core = Object.assign({}, defaultCore)
+  var core = new Core()
 
 
   var GoogleDrive = new Google(core, {host: 'http://localhost:3020'})
   var GoogleDrive = new Google(core, {host: 'http://localhost:3020'})
 
 
@@ -120,7 +121,7 @@ test('getFolder: fail', function (t) {
   .get('/google/list')
   .get('/google/list')
   .reply(500, 'Not authenticated')
   .reply(500, 'Not authenticated')
 
 
-  var core = Object.assign({}, defaultCore)
+  var core = new Core()
 
 
   var GoogleDrive = new Google(core, {host: 'http://localhost:3020'})
   var GoogleDrive = new Google(core, {host: 'http://localhost:3020'})