57 lines
2.1 KiB
JavaScript
57 lines
2.1 KiB
JavaScript
/**
|
|
* @format
|
|
*/
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import {
|
|
StoreOwnerFlow,
|
|
setCheckbox,
|
|
settingsPageSaveChanges,
|
|
unsetCheckbox,
|
|
verifyCheckboxIsSet,
|
|
verifyCheckboxIsUnset
|
|
} from '@woocommerce/e2e-utils';
|
|
|
|
describe( 'WooCommerce Products > Downloadable Products Settings', () => {
|
|
beforeAll( async () => {
|
|
await StoreOwnerFlow.login();
|
|
} );
|
|
|
|
it( 'can update settings', async () => {
|
|
// Go to downloadable products settings page
|
|
await StoreOwnerFlow.openSettings( 'products', 'downloadable' );
|
|
|
|
// Make sure the product tab is active
|
|
await expect( page ).toMatchElement( 'a.nav-tab-active', { text: 'Products' } );
|
|
await expect( page ).toMatchElement( 'ul.subsubsub > li > a.current', { text: 'Downloadable products' } );
|
|
|
|
await expect( page ).toSelect( '#woocommerce_file_download_method', 'Redirect only (Insecure)' );
|
|
await setCheckbox( '#woocommerce_downloads_require_login' );
|
|
await setCheckbox( '#woocommerce_downloads_grant_access_after_payment' );
|
|
await settingsPageSaveChanges();
|
|
|
|
// Verify that settings have been saved
|
|
await Promise.all( [
|
|
expect( page ).toMatchElement( '#message', { text: 'Your settings have been saved.' } ),
|
|
expect( page ).toMatchElement( '#woocommerce_file_download_method', { text: 'Redirect only (Insecure)' } ),
|
|
verifyCheckboxIsSet( '#woocommerce_downloads_require_login' ),
|
|
verifyCheckboxIsSet( '#woocommerce_downloads_grant_access_after_payment' ),
|
|
] );
|
|
|
|
await expect( page ).toSelect( '#woocommerce_file_download_method', 'Force downloads' );
|
|
await unsetCheckbox( '#woocommerce_downloads_require_login' );
|
|
await unsetCheckbox( '#woocommerce_downloads_grant_access_after_payment' );
|
|
await settingsPageSaveChanges();
|
|
|
|
// Verify that settings have been saved
|
|
await Promise.all( [
|
|
expect( page ).toMatchElement( '#message', { text: 'Your settings have been saved.' } ),
|
|
expect( page ).toMatchElement( '#woocommerce_file_download_method', { text: 'Force downloads' } ),
|
|
verifyCheckboxIsUnset( '#woocommerce_downloads_require_login' ),
|
|
verifyCheckboxIsUnset( '#woocommerce_downloads_grant_access_after_payment' ),
|
|
] );
|
|
} );
|
|
} );
|