|
1 | 1 | import anyTest, { TestInterface } from 'ava';
|
| 2 | +import browserEnv from 'browser-env'; |
2 | 3 | import * as sinon from 'sinon';
|
3 | 4 | import Strapi from './sdk';
|
4 | 5 |
|
@@ -27,6 +28,8 @@ test('Create an instance', t => {
|
27 | 28 | 'login',
|
28 | 29 | 'forgotPassword',
|
29 | 30 | 'resetPassword',
|
| 31 | + 'getProviderAuthenticationUrl', |
| 32 | + 'authenticateProvider', |
30 | 33 | 'getEntries',
|
31 | 34 | 'getEntry',
|
32 | 35 | 'createEntry',
|
@@ -203,6 +206,73 @@ test('Reset password', async t => {
|
203 | 206 | );
|
204 | 207 | });
|
205 | 208 |
|
| 209 | +test('Provider authentication url', t => { |
| 210 | + t.is( |
| 211 | + t.context.strapi.getProviderAuthenticationUrl('facebook'), |
| 212 | + 'http://strapi-host/connect/facebook' |
| 213 | + ); |
| 214 | +}); |
| 215 | + |
| 216 | +test('Provider authentication on Node.js', async t => { |
| 217 | + t.context.axiosRequest.resolves({ |
| 218 | + data: { |
| 219 | + jwt: 'foo', |
| 220 | + user: {} |
| 221 | + } |
| 222 | + }); |
| 223 | + const authentication = await t.context.strapi.authenticateProvider( |
| 224 | + 'facebook', |
| 225 | + { |
| 226 | + code: 'XXX' |
| 227 | + } |
| 228 | + ); |
| 229 | + |
| 230 | + t.true( |
| 231 | + t.context.axiosRequest.calledWithExactly({ |
| 232 | + method: 'get', |
| 233 | + params: { |
| 234 | + code: 'XXX' |
| 235 | + }, |
| 236 | + url: '/auth/facebook/callback' |
| 237 | + }) |
| 238 | + ); |
| 239 | + t.deepEqual(authentication, { |
| 240 | + jwt: 'foo', |
| 241 | + user: {} |
| 242 | + }); |
| 243 | +}); |
| 244 | + |
| 245 | +test.serial('Provider authentication on browser', async t => { |
| 246 | + const globalAny: any = global; |
| 247 | + browserEnv(['window'], { |
| 248 | + url: 'http://localhost?access_token=XXX' |
| 249 | + }); |
| 250 | + t.context.axiosRequest.resolves({ |
| 251 | + data: { |
| 252 | + jwt: 'foo', |
| 253 | + user: {} |
| 254 | + } |
| 255 | + }); |
| 256 | + const authentication = await t.context.strapi.authenticateProvider( |
| 257 | + 'github' |
| 258 | + ); |
| 259 | + |
| 260 | + t.true( |
| 261 | + t.context.axiosRequest.calledWithExactly({ |
| 262 | + method: 'get', |
| 263 | + params: { |
| 264 | + access_token: 'XXX' |
| 265 | + }, |
| 266 | + url: '/auth/github/callback' |
| 267 | + }) |
| 268 | + ); |
| 269 | + t.deepEqual(authentication, { |
| 270 | + jwt: 'foo', |
| 271 | + user: {} |
| 272 | + }); |
| 273 | + delete globalAny.window; |
| 274 | +}); |
| 275 | + |
206 | 276 | test('Get entries', async t => {
|
207 | 277 | await t.context.strapi.getEntries('user', {
|
208 | 278 | _sort: 'email:asc'
|
|
0 commit comments