woocommerce/tests/e2e/core-tests/specs/activate-and-setup/setup.test.js

89 lines
2.5 KiB
JavaScript

/* eslint-disable jest/no-export, jest/no-disabled-tests */
/**
* Internal dependencies
*/
const {
StoreOwnerFlow,
permalinkSettingsPageSaveChanges,
setCheckbox,
settingsPageSaveChanges,
verifyCheckboxIsSet,
verifyValueOfInputField
} = require( '@woocommerce/e2e-utils' );
const {
getTestConfig,
waitAndClick
} = require( '@woocommerce/e2e-environment' );
/**
* External dependencies
*/
const { HTTPClientFactory } = require( '@woocommerce/api' );
const {
it,
describe,
beforeAll,
} = require( '@jest/globals' );
const runInitialStoreSettingsTest = () => {
describe('Store owner can finish initial store setup', () => {
it('can enable tax rates and calculations', async () => {
// Go to general settings page
await StoreOwnerFlow.openSettings('general');
// Make sure the general tab is active
await expect(page).toMatchElement('a.nav-tab-active', {text: 'General'});
// Enable tax rates and calculations
await setCheckbox('#woocommerce_calc_taxes');
await settingsPageSaveChanges();
// Verify that settings have been saved
await Promise.all([
expect(page).toMatchElement('#message', {text: 'Your settings have been saved.'}),
verifyCheckboxIsSet('#woocommerce_calc_taxes'),
]);
});
it('can configure permalink settings', async () => {
// Go to Permalink Settings page
await StoreOwnerFlow.openPermalinkSettings();
// Select "Post name" option in common settings section
await page.click('input[value="/%postname%/"]', {text: ' Post name'});
// Select "Custom base" in product permalinks section
await waitAndClick( page, '#woocommerce_custom_selection' );
// Fill custom base slug to use
await expect(page).toFill('#woocommerce_permalink_structure', '/product/');
await permalinkSettingsPageSaveChanges();
// Verify that settings have been saved
await Promise.all([
expect(page).toMatchElement('#setting-error-settings_updated', {text: 'Permalink structure updated.'}),
verifyValueOfInputField('#permalink_structure', '/%postname%/'),
verifyValueOfInputField('#woocommerce_permalink_structure', '/product/'),
]);
});
it( 'can use api with pretty permalinks', async () => {
const testConfig = getTestConfig();
const admin = testConfig.users.admin;
const client = HTTPClientFactory.build( testConfig.url )
.withBasicAuth( admin.username, admin.password )
.withIndexPermalinks()
.create();
const response = await client.get( '/wc/v3/products' );
expect( response.statusCode ).toBe( 200 );
});
});
};
module.exports = runInitialStoreSettingsTest;