import { describe, expect, test, jest } from '@jest/globals'; import nock from 'nock'; import { RestAPIClient, BEARER_TOKEN_URL } from '../rest-api-client'; import { SecretsManager } from '../secrets'; import type { Secrets } from '../secrets'; const fakeSecrets = { calypsoOauthApplication: { client_id: 'some_value', client_secret: 'some_value', }, testAccounts: { basicUser: { username: 'wpcomuser2', password: 'hunter2', primarySite: 'wpcomuser.wordpress.com/', }, noUrlUser: { username: 'nourluser', password: 'password1234', }, }, } as unknown as Secrets; jest.spyOn( SecretsManager, 'secrets', 'get' ).mockImplementation( () => fakeSecrets ); // Persist and intercept all bearer token calls in these tests. nock( BEARER_TOKEN_URL ) .persist() .post( /.*/ ) .reply( 200, { success: true, data: { bearer_token: 'abcdefghijklmn', token_links: [ 'link_1', 'link_2' ], }, } ); describe( 'RestAPIClient: getMyAccountInformation', function () { const restAPIClient = new RestAPIClient( { username: 'fake_user', password: 'fake_password', } ); const requestURL = restAPIClient.getRequestURL( '1.1', '/me' ); test( 'Account information is returned on successful request', async function () { const testData = { ID: 420, username: 'maryJane', email: 'maryJane@test.com', primary_blog: 199, primary_blog_url: 'maryjane.test.com', language: 'en', }; nock( requestURL.origin ).get( requestURL.pathname ).reply( 200, testData ); const response = await restAPIClient.getMyAccountInformation(); expect( response.username ).toBe( testData.username ); expect( response.primary_blog_url ).toEqual( testData.primary_blog_url ); expect( response.ID ).toBe( testData.ID ); expect( response.email ).toBe( testData.email ); } ); test.each( [ { code: 'invalid_token', message: 'The OAuth2 token is invalid', }, { code: 'invalid_username', message: "We don't seem to have an account with that name. Double-check the spelling and try again!", }, ] )( 'Throws error with expected code and message ($code)', async function ( { code, message } ) { nock( requestURL.origin ) .get( requestURL.pathname ) .reply( 400, { error: code, message: message } ); await expect( restAPIClient.getMyAccountInformation() ).rejects.toThrow( `${ code }: ${ message }` ); } ); } ); describe( 'RestAPIClient: getAllDomains', function () { const restAPIClient = new RestAPIClient( { username: 'fake_user', password: 'fake_password', } ); const requestURL = restAPIClient.getRequestURL( '1.1', '/all-domains/' ); test( 'Sites are returned on successful request', async function () { const testData = { domains: [ { blog_id: 5420, domain: 'myamazinsite.test.com', }, { blog_id: 8799, domain: 'myamazinsiteredux.test.com', }, ], }; nock( requestURL.origin ).get( requestURL.pathname ).reply( 200, testData ); const response = await restAPIClient.getAllDomains(); expect( response.domains.length ).toBe( 2 ); expect( response.domains[ 0 ].blog_id ).toBe( 5420 ); expect( response.domains[ 1 ].blog_id ).toBe( 8799 ); } ); test.each( [ { code: 'invalid_token', message: 'The OAuth2 token is invalid', }, ] )( 'Throws error with expected code and message ($code)', async function ( { code, message } ) { nock( requestURL.origin ) .get( requestURL.pathname ) .reply( 400, { error: code, message: message } ); await expect( restAPIClient.getAllDomains() ).rejects.toThrow( `${ code }: ${ message }` ); } ); } ); describe( 'RestAPIClient: createSite', function () { const restAPIClient = new RestAPIClient( { username: 'fake_user', password: 'fake_password', } ); const requestURL = restAPIClient.getRequestURL( '1.1', '/sites/new' ); test( 'Site metadata is returned on successful request', async function () { const testResponse = { success: true, blog_details: { url: 'https://fakeblog.blog.com', blogid: '420', blogname: 'fake_blog_name', site_slug: 'fakeblog.blog.com', }, }; nock( requestURL.origin ).post( requestURL.pathname ).reply( 200, testResponse ); const response = await restAPIClient.createSite( { name: 'fake_blog_name', title: 'fake_blog_title', } ); expect( response ).not.toHaveProperty( 'error' ); expect( response.success ).toBe( true ); } ); } );