forked from woocommerce/woocommerce-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
E2E tests for Product Query Block (woocommerce#7386)
- Loading branch information
1 parent
7b66607
commit a5d410b
Showing
5 changed files
with
117 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
tests/e2e/specs/backend/__fixtures__/product-query.fixture.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"title":"Product Query Block","pageContent":"<!-- wp:query {\"queryId\":0,\"query\":{\"perPage\":6,\"pages\":0,\"offset\":0,\"postType\":\"product\",\"order\":\"desc\",\"orderBy\":\"date\",\"author\":\"\",\"search\":\"\",\"exclude\":[],\"sticky\":\"\",\"inherit\":false},\"displayLayout\":{\"type\":\"flex\",\"columns\":3},\"namespace\":\"woocommerce/product-query\"} --><div class=\"wp-block-query\"><!-- wp:post-template --><!-- wp:woocommerce/product-image --><div class=\"is-loading\"></div><!-- /wp:woocommerce/product-image --><!-- wp:post-title {\"level\":3,\"fontSize\":\"large\"} /--><!-- /wp:post-template --><!-- wp:query-pagination --><!-- wp:query-pagination-previous /--><!-- wp:query-pagination-numbers /--><!-- wp:query-pagination-next /--><!-- /wp:query-pagination --><!-- wp:query-no-results --><!-- wp:paragraph --><p>No product found.</p><!-- /wp:paragraph --><!-- /wp:query-no-results --></div><!-- /wp:query -->"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
/** | ||
* External dependencies | ||
*/ | ||
import { | ||
getAllBlocks, | ||
switchUserToAdmin, | ||
canvas, | ||
openDocumentSettingsSidebar, | ||
openListView, | ||
setPostContent, | ||
insertBlock, | ||
} from '@wordpress/e2e-test-utils'; | ||
import { visitBlockPage } from '@woocommerce/blocks-test-utils'; | ||
|
||
/** | ||
* Internal dependencies | ||
*/ | ||
import { | ||
insertBlockDontWaitForInsertClose, | ||
GUTENBERG_EDITOR_CONTEXT, | ||
describeOrSkip, | ||
} from '../../utils'; | ||
|
||
const block = { | ||
name: 'Product Query', | ||
slug: 'woocommerce/product-query', | ||
class: '.wp-block-query', | ||
}; | ||
|
||
describeOrSkip( GUTENBERG_EDITOR_CONTEXT === 'gutenberg' )( | ||
`${ block.name } Block`, | ||
() => { | ||
beforeAll( async () => { | ||
await switchUserToAdmin(); | ||
await visitBlockPage( `${ block.name } Block` ); | ||
} ); | ||
|
||
it( 'can be inserted more than once', async () => { | ||
await insertBlockDontWaitForInsertClose( block.name ); | ||
expect( await getAllBlocks() ).toHaveLength( 2 ); | ||
} ); | ||
|
||
it( 'renders without crashing', async () => { | ||
await expect( page ).toRenderBlock( block ); | ||
} ); | ||
|
||
it( 'Editor preview shows only on sale products after enabling `Show only products on sale`', async () => { | ||
await visitBlockPage( `${ block.name } Block` ); | ||
const canvasEl = canvas(); | ||
await openDocumentSettingsSidebar(); | ||
await openListView(); | ||
await page.click( | ||
'.block-editor-list-view-block__contents-container a.components-button' | ||
); | ||
const [ onSaleToggle ] = await page.$x( | ||
'//label[text()="Show only products on sale"]' | ||
); | ||
await onSaleToggle.click(); | ||
await canvasEl.waitForSelector( `${ block.class } > p` ); | ||
await canvasEl.waitForSelector( | ||
`${ block.class } > ul.wp-block-post-template` | ||
); | ||
const products = await canvasEl.$$( | ||
`${ block.class } ul.wp-block-post-template > li.block-editor-block-preview__live-content` | ||
); | ||
expect( products ).toHaveLength( 1 ); | ||
} ); | ||
|
||
describe( 'On Sale variation', () => { | ||
beforeAll( async () => { | ||
await visitBlockPage( `${ block.name } Block` ); | ||
await setPostContent( '' ); | ||
await insertBlock( 'Products on Sale' ); | ||
} ); | ||
|
||
it( 'Show only on sale products', async () => { | ||
const canvasEl = canvas(); | ||
await canvasEl.waitForSelector( | ||
`${ block.class } > ul.wp-block-post-template` | ||
); | ||
const products = await canvasEl.$$( | ||
`${ block.class } ul.wp-block-post-template > li.block-editor-block-preview__live-content` | ||
); | ||
expect( products ).toHaveLength( 1 ); | ||
} ); | ||
|
||
it( 'Does not have on sale toggle', async () => { | ||
await openDocumentSettingsSidebar(); | ||
await openListView(); | ||
await page.click( | ||
'.block-editor-list-view-block__contents-container a.components-button' | ||
); | ||
await expect( page ).not.toMatchElement( | ||
'.block-editor-block-inspector', | ||
{ | ||
text: 'Show only products on sale', | ||
} | ||
); | ||
} ); | ||
} ); | ||
} | ||
); |