@shopware-ag/acceptance-test-suite 11.15.2 → 11.15.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -10,14 +10,24 @@ This test suite is an extension to [Playwright](https://playwright.dev/) to easi
10
10
  * [Installation](#installation)
11
11
  * [Configuration](#configuration)
12
12
  * [Usage](#usage)
13
- * [General Fixtures](#general-fixtures)
13
+ * [Deployment Process](#deployment-process)
14
+ * [General fixtures](#general-fixtures)
14
15
  * [Page Objects](#page-objects)
15
16
  * [Actor Pattern](#actor-pattern)
16
- * [Data Fixtures](#data-fixtures)
17
- * [Test Data Service](#test-data-service)
18
- * [Code Contribution](#code-contribution)
17
+ * [Types](#types-in-the-test-suite)
18
+ * [Testing](#testing-within-the-test-suite)
19
+ * [Running tests](#running-tests-in-the-test-suite)
20
+ * [Local development with ATS](#local-development-with-ats)
19
21
  * [Best practices](#best-practices)
20
- * [Running Tests in the Test Suite](#running-tests-in-the-test-suite)
22
+ * [Code contribution](#code-contribution)
23
+ * [Services](#services)
24
+ * [Test Data Service](#test-data-service)
25
+ * [When to use](#when-to-use-the-testdataservice-in-tests)
26
+ * [When and why to extend](#when-and-why-to-extend-the-testdataservice)
27
+ * [Available methods](#available-create-methods-in-testdataservice)
28
+ * [Writing new methods](#writing-new-methods-in-testdataservice)
29
+ * [Automatic cleanup](#automatic-cleanup-of-test-data-and-system-configurations)
30
+ * [Extending the TestDataService](#extending-the-testdataservice-in-external-projects)
21
31
 
22
32
  ## Installation
23
33
  Start by creating your own [Playwright](https://playwright.dev/docs/intro) project.
@@ -72,6 +82,13 @@ export default defineConfig({
72
82
 
73
83
  For more information about how to configure your Playwright project, have a look into the [official documentation](https://playwright.dev/docs/test-configuration).
74
84
 
85
+ ### Mailpit configuration
86
+ Set up your local Mailpit instance by following the instructions at [Mailpit GitHub repository](https://github.com/axllent/mailpit).
87
+ By default, Mailpit starts a web interface at `http://localhost:8025` and listens for SMTP on port `1025`.
88
+ Set the `MAILPIT_BASE_URL` environment variable in `playwright.config.ts` to `http://localhost:8025`. You can now run email tests, such as `tests/Mailpit.spec.ts`.
89
+
90
+
91
+
75
92
  ## Usage
76
93
  The test suite uses the [extension system](https://playwright.dev/docs/extensibility) of Playwright and can be used as a full drop-in for Playwright. But, as you might also want to add your own extensions, the best way to use it is to create your own base test file and use it as the central reference for your test files. Add it to your project root or a specific fixture directory and name it whatever you like.
77
94
 
@@ -108,7 +125,51 @@ test('My first test scenario.', async ({ AdminApiContext, DefaultSalesChannel })
108
125
 
109
126
  In the example above you can see two Shopware specific fixtures that are used in the test, `AdminApiContext` and `DefaultSalesChannel`. Every fixture can be used as an argument within the test method. Read more about available fixtures in the next section.
110
127
 
111
- ## General Fixtures
128
+ ## Deployment Process
129
+
130
+ To deploy a new version of the Acceptance Test Suite, follow the steps below:
131
+
132
+ 1. **Create a Pull Request**
133
+ Open a new pull request with your changes. Ensure that all commits follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification to support automated versioning and changelog generation.
134
+
135
+ 2. **Approval and Merge**
136
+ Once the pull request has been reviewed and approved, merge it into the main branch.
137
+
138
+ 3. **Automated Deployment PR Creation**
139
+ After the merge, the [`release-please`](https://github.com/googleapis/release-please) tool will automatically open a new pull request. This deployment PR will include version bumps and a generated changelog.
140
+
141
+ 4. **Review and Approve the Deployment PR**
142
+ The deployment pull request requires an additional approval before it can be merged.
143
+
144
+ 5. **Merge the Deployment PR**
145
+ Once the deployment PR is approved and merged, a new release of the Acceptance Test Suite will be created in the GitHub repository. This action will also publish a new package version to NPM under
146
+ [@shopware-ag/acceptance-test-suite](https://www.npmjs.com/package/@shopware-ag/acceptance-test-suite).
147
+
148
+ 6. **Use the New Version**
149
+ After a short delay, the newly published version will be available on NPM. You can then reference it in your individual project folders as needed.
150
+
151
+ ### Troubleshooting
152
+ If you encounter any issues with the automated deployment process, please check the following [troubleshooting page of release-please](https://github.com/googleapis/release-please?tab=readme-ov-file#release-please-bot-does-not-create-a-release-pr-why).
153
+
154
+ In the most cases, the problem is related to the commit messages not following the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification. Make sure to check your commit messages and rebase your branch if necessary. If your PR is merged with a commit message that does not follow the specification you can do the following:
155
+
156
+ 1. **Create an empty commit to the main branch**
157
+ ```bash
158
+ git commit --allow-empty -m "chore: release 2.0.0" -m "Release-As: 2.0.0"
159
+ ```
160
+ When a commit to the main branch has Release-As: x.x.x (case insensitive) in the commit body, Release Please will open a new pull request for the specified version.
161
+
162
+ 2. **Push the changes**
163
+ ```bash
164
+ git push origin <your-branch>
165
+ ```
166
+
167
+ 3. **Adjust the release notes**
168
+
169
+ Don't forget to adjust the release notes in the deployment PR.
170
+
171
+
172
+ ## General fixtures
112
173
 
113
174
  ### DefaultSalesChannel
114
175
  We try to encapsulate test execution within the system under test and make tests as deterministic as possible. The idea is, to have a separate sales channel created which is used to do tests within the standard Storefront. The `DefaultSalesChannel` fixture is a worker scoped fixture and is there to achieve exactly that. Using it will provide you with a new sales channel with default settings, including a default Storefront customer.
@@ -206,6 +267,9 @@ Note that this is just a very rough example. In most cases you won't use this pa
206
267
  ### StorefrontPage
207
268
  This fixture provides a Playwright [page](https://playwright.dev/docs/api/class-page) context for the Shopware Storefront of the default sales channel.
208
269
 
270
+ ### Add new fixtures
271
+ To add new general fixtures create them inside the `src/fixtures` folder. Keep in mind, that you need to merge your new fixture inside the `/src/index.ts` file.
272
+
209
273
  ## Page Objects
210
274
  Page objects can be helpful to simplify the usage of element selectors and make them available in a reusable way. They help you to organize page specific locators and provide helpers for interacting with a given page. Within our test suite we try to keep the page objects very simple and not to add too much logic to them. So most of the page objects resemble just a collection of element locators and maybe some little helper methods.
211
275
 
@@ -224,7 +288,46 @@ test('Storefront cart test scenario', async ({ StorefrontPage, StorefrontCheckou
224
288
 
225
289
  You can get an overview of all available page objects in the [repository](https://github.com/shopware/acceptance-test-suite/tree/trunk/src/page-objects) of this test suite.
226
290
 
227
- ## Actor Pattern
291
+ ### Page Object module
292
+ The `modules` folder is designed to house reusable utility functions that operate on a `Page` object (from Playwright). These functions dynamically interact with different browser pages or contexts using the `page` parameter.
293
+ For example, utility functions like `getCustomFieldCardLocators` or `getSelectFieldListitem` are used across multiple page objects to handle specific functionality (e.g., managing custom fields or select field list items). Centralizing these utilities in the `modules` folder improves code organization, readability, and reduces duplication.
294
+ Create a new class inside module when it helps to streamline the codebase and avoid repetitive logic across page objects.
295
+
296
+ You can find how `getCustomFieldCardLocators` is defined in the [modules folder ](./src/page-objects/administration/modules/CustomFieldCard.ts) and used in other page object class [here](./src/page-objects/administration/ProductDetail.ts).
297
+
298
+
299
+ ### Add new Page Objects
300
+ Page objects are organized mainly by their usage in the administration or storefront. To add a new page object just add it in the respective subfolder and reference it in the `AdministrationPages.ts` or `StorefrontPages.ts`.
301
+
302
+ **Usage**
303
+ ```TypeScript
304
+ import { test as base } from '@playwright/test';
305
+ import type { FixtureTypes } from '../types/FixtureTypes';
306
+
307
+ import { ProductDetail } from './administration/ProductDetail';
308
+ import { OrderDetail } from './administration/OrderDetail';
309
+ import { CustomerListing } from './administration/CustomerListing';
310
+ // [...]
311
+ import { MyNewPage } from './administration/MyNewPage';
312
+
313
+ export interface AdministrationPageTypes {
314
+ AdminProductDetail: ProductDetail;
315
+ AdminOrderDetail: OrderDetail;
316
+ AdminCustomerListing: CustomerListing;
317
+ // [...]
318
+ AdminMyNewPage: MyNewPage;
319
+ }
320
+
321
+ export const AdminPageObjects = {
322
+ ProductDetail,
323
+ OrderDetail,
324
+ CustomerListing,
325
+ // [...]
326
+ MyNewPage,
327
+ }
328
+ ```
329
+
330
+ ## Actor pattern
228
331
  The actor pattern is a very simple concept that we added to our test suite. It is something that is not related to Playwright, but similar concepts exist in other testing frameworks. We implemented it, because we want to have reusable test logic that can be used in a human-readable form, without abstracting away Playwright as a framework. So you are totally free to use it or not. Any normal Playwright functionality will still be usable in your tests.
229
332
 
230
333
  The concept adds two new entities besides the already mentioned page objects.
@@ -268,11 +371,11 @@ test('Product detail test scenario', async ({
268
371
  });
269
372
  ```
270
373
 
271
- In this example you can see that this pattern creates tests that are very comprehensible, even for non-tech people. They also make it easier to abstract simple test logic that might be used in different scenarios into executable tasks, like adding a product to the cart. You can also see the usage of a data fixture (`ProductData`), which we will cover in a later chapter.
374
+ In this example you can see that this pattern creates tests that are very comprehensible, even for non-tech people. They also make it easier to abstract simple test logic that might be used in different scenarios into executable tasks, like adding a product to the cart.
272
375
 
273
376
  The test suite offers two different actors by default:
274
377
 
275
- * `ShopCustomer`: A user that is navigating the Storefront and buying products.
378
+ * `ShopCustomer`: A user that is navigating the Storefront.
276
379
  * `ShopAdmin`: A user that is managing Shopware via the Administration.
277
380
 
278
381
  ### Tasks
@@ -320,124 +423,144 @@ test('Customer login test scenario', async ({ ShopCustomer, Login }) => {
320
423
  });
321
424
  ```
322
425
 
323
- You can create your own tasks in the same way to make them available for the actor pattern. Every task is just a simple Playwright fixture containing a function call with the corresponding test logic. Make sure to merge your task fixtures with other fixtures you created in your base test file. You can use the `mergeTests` method of Playwright to combine several fixtures into one test extension.
426
+ You can create your own tasks in the same way to make them available for the actor pattern. Every task is just a simple Playwright fixture containing a function call with the corresponding test logic. Make sure to merge your task fixtures with other fixtures you created in your base test file. You can use the `mergeTests` method of Playwright to combine several fixtures into one test extension. Use `/src/tasks/shop-customer-tasks.ts` or `/src/tasks/shop-admin-tasks.ts` for that.
324
427
 
325
- ## Data Fixtures
428
+ To keep tests easily readable, use names for your tasks so that in the test itself the code line resembles the `Actor.attemptsTo(doSomething)` pattern as good as possible.
326
429
 
327
- ---
328
- **Deprecated:** Use the [Test Data Service](#test-data-service) instead.
430
+ **Example**
431
+ ```TypeScript
432
+ // Bad example
433
+ await ShopCustomer.attemptsTo(ProductCart);
329
434
 
330
- ---
435
+ // Better example
436
+ await ShopCustomer.attemptsTo(PutProductIntoCart);
437
+ ```
331
438
 
332
- We already covered a lot of interesting fixtures you can use to create your test scenario. One topic which is missing is test data. Most test scenarios will need some predefined state within the system under test to validate a certain behaviour. Within this test suite we use Playwright fixtures also to create necessary test data via API. The goal is to have no direct system dependencies like a database connection to the system under test.
439
+ ## Types in the Test Suite
333
440
 
334
- **Example**
335
- ```TypeScript
336
- import { test as base, expect } from '@playwright/test';
337
- import type { FixtureTypes } from '@shopware-ag/acceptance-test-suite';
441
+ The Shopware Acceptance Test Suite leverages TypeScript’s static typing to ensure that test data structures, API interactions, and test logic are consistent and error-resistant.
338
442
 
339
- export const PropertiesData = base.extend<FixtureTypes>({
340
- PropertiesData: async ({ AdminApiContext }, use) => {
443
+ ### Shopware Types
341
444
 
342
- const response = await AdminApiContext.post('property-group?_response=1', {
343
- data: {
344
- name: 'Size',
345
- description: 'Size',
346
- displayType: 'text',
347
- sortingType: 'name',
348
- options: [{
349
- name: 'Small',
350
- }, {
351
- name: 'Medium',
352
- }, {
353
- name: 'Large',
354
- }],
355
- },
356
- });
445
+ The centralized type definition file, [ShopwareTypes.ts](https://github.com/shopware/acceptance-test-suite/blob/trunk/src/types/ShopwareTypes.ts) is tightly coupled with the TestDataService, which defines the shape and default data of all supported Shopware entities. Each supported entity—such as Product, Customer, Media, etc.—is defined with its properties and default values. These types are then referenced throughout the TestDataService to provide IntelliSense, validation, and consistent data structures.
357
446
 
358
- expect(response.ok()).toBeTruthy();
447
+ ```
448
+ export type ProductReview = components['schemas']['ProductReview'] & {
449
+ id: string,
450
+ productId: string,
451
+ salesChannelId: string,
452
+ title: string,
453
+ content: string,
454
+ points: number,
455
+ }
456
+ ```
457
+ Within that example above you are importing the auto-generated type for `ProductReview` from the Shopware Admin API OpenAPI schema and extending it with additional or overridden fields using & { ... }.
359
458
 
360
- const { data: propertyGroup } = await response.json();
459
+ Sometimes, you might want to remove fields from a type. TypeScript provides the Omit<T, K> utility to exclude fields from a type:
361
460
 
362
- await use(propertyGroup);
461
+ ```
462
+ export type Country = Omit<components['schemas']['Country'], 'states'> & {
463
+ id: string,
464
+ states: [{
465
+ name: string,
466
+ shortCode: string,
467
+ }],
468
+ }
469
+ ```
363
470
 
364
- const deleteResponse = await AdminApiContext.delete(`property-group/${propertyGroup.id}`);
365
- expect(deleteResponse.ok()).toBeTruthy();
366
- },
367
- });
471
+ For custom use cases, simply define a custom type:
472
+
473
+ ```
474
+ export type CustomShippingMethod = {
475
+ name: string;
476
+ active: boolean;
477
+ deliveryTimeId: string;
478
+ }
368
479
  ```
369
480
 
370
- Here you can see a simple data fixture which will create a new property group in the Shopware instance under test via the Admin-API. The nice thing about Playwright fixtures is, that we can create some data and make it available within our test using the `use()` method and right afterward already clean up the data with a delete call. This enables us to have all operations regarding specific test data in one place with the opportunity to automatically clean up the data after test execution.
481
+ ## Testing within the Test Suite
482
+ The `tests` folder ensures the reliability of the testing framework by validating the functionality of tools and data used in tests. Add tests to verify any new features or changes you introduce:
371
483
 
372
- You can simply make test data available in your test by using the fixture in your test method.
484
+ - **Page Objects**: Ensure they are correctly implemented and interact with the application as expected, including navigation, element visibility, and user interactions.
485
+ - **TestDataService Methods**: Verify that methods for creating, getting, and cleaning up test data (e.g., products, customers, orders) work correctly and produce consistent results.
373
486
 
374
487
  ```TypeScript
375
- import { test } from './../BaseTestFile';
488
+ //Example for page objects
376
489
 
377
- test('Property group test scenario', async ({ PropertiesData }) => {
378
-
379
- // Do some testing with the property group from PropertiesData
380
- });
490
+ await ShopAdmin.goesTo(AdminManufacturerCreate.url());
491
+ await ShopAdmin.expects(AdminManufacturerCreate.nameInput).toBeVisible();
492
+ await ShopAdmin.expects(AdminManufacturerCreate.saveButton).toBeVisible();
381
493
  ```
382
494
 
383
- If you create your own data fixtures make sure to import and merge them in your base test file with other fixtures you created.
384
-
385
- ## Test Data Service
386
- This service is a simple way to create test data within your tests. It simplifies the usage of the Shopware API and provides sample structs for various entities, which you also can adjust to your needs. For detailed documentation of the methods you can have a look at the service class or simply use the auto-completion of your IDE. Here is a list of available methods:
387
-
388
- ### Creating Data
389
- * `createBasicProduct()`
390
- * `createProductWithImage()`
391
- * `createDigitalProduct()`
392
- * `createProductWithPriceRange()`
393
- * `createBasicManufacturer()`
394
- * `createManufacturerWithImage()`
395
- * `createCategory()`
396
- * `createMediaPNG()`
397
- * `createMediaTXT()`
398
- * `createColorPropertyGroup()`
399
- * `createTextPropertyGroup()`
400
- * `createTag()`
401
- * `createCustomer()`
402
- * `createOrder()`
403
- * `createPromotionWithCode()`
404
- * `createBasicPaymentMethod()`
405
- * `createPaymentMethodWithImage()`
406
- * `createBasicShippingMethod()`
407
- * `createShippingMethodWithImage()`
408
- * `createBasicRule()`
409
- * `createBasicPageLayout()`
410
-
411
- ### Relations
412
- * `assignProductDownload()`
413
- * `assignProductMedia()`
414
- * `assignProductManufacturer()`
415
- * `assignProductCategory()`
416
- * `assignProductTag()`
417
- * `assignManufacturerMedia()`
418
- * `assignPaymentMethodMedia()`
419
- * `assignShippingMethodMedia()`
420
-
421
- ### Retrieving Basic Data
422
- * `getCurrency()`
423
- * `getRule()`
424
- * `getShippingMethod()`
425
- * `getPaymentMethod()`
426
- * `getAllDeliveryTimeResources()`
427
- * `getCustomerAddress()`
428
- * `getSalutation()`
429
- * `getOrderStateMachine()`
430
- * `getDeliveryStateMachine()`
431
- * `getTransactionStateMachine()`
432
- * `getTransactionStateMachine()`
433
- * `getStateMachine()`
434
- * `getStateMachineState()`
435
- * `getPropertyGroupOptions()`
436
-
437
- ## Code Contribution
438
- You can contribute to this project via its [official repository](https://github.com/shopware/acceptance-test-suite/) on GitHub.
495
+ ```TypeScript
496
+ //Example for TestDataService
439
497
 
440
- This project uses [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/). Please make sure to form your commits accordingly to the spec.
498
+ const product = await TestDataService.createProductWithImage({ description: 'Test Description' });
499
+ expect(product.description).toEqual('Test Description');
500
+ expect(product.coverId).toBeDefined();
501
+ ```
502
+
503
+ ## Running tests in the Test Suite
504
+ If you want to work on the test suite and try to execute tests from within this repository, you have to run a corresponding docker image for a specific Shopware version.
505
+
506
+ We publish pre-built images at the [GitHub container registry](https://github.com/orgs/shopware/packages/container/package/acceptance-test-suite%2Ftest-image). The images are built on a daily basis, check to see which versions are available.
507
+
508
+ In order to select an image, export the corresponding tag as `SHOPWARE_VERSION` and start the containers:
509
+
510
+ ```bash
511
+ SHOPWARE_VERSION=trunk docker compose up --wait shopware
512
+ ```
513
+
514
+ <details>
515
+ <summary>ℹ️ What if the version I'd like to test is not available as a pre-built image?</summary>
516
+
517
+ If you want to test with an image that's not available already, you can build it yourself by exporting a few more variables:
518
+
519
+ ```bash
520
+ export PHP_VERSION="8.3" # PHP version of the base image
521
+ export SHOPWARE_VERSION="v6.5.8.0" # Shopware version to check out. This may bei either a branch or a tag, depending on the value of SHOPWARE_BUILD_SOURCE
522
+ export SHOPWARE_BUILD_SOURCE="tag" # Either "branch" or "tag"
523
+
524
+ docker compose up --attach-dependencies shopware # This will build the image if it's not available
525
+ ```
526
+ </details>
527
+
528
+ Afterwards you can execute the normal playwright commands:
529
+
530
+ ```bash
531
+ npx playwright test --ui
532
+ ```
533
+
534
+ ## Local development with ATS
535
+ To work locally with the Acceptance Test Suite (ATS) and your development setup, follow these steps:
536
+
537
+ ### Create your Page Objects and TestDataService methods
538
+
539
+ In the ATS repository ([shopware/acceptance-test-suite](https://github.com/shopware/acceptance-test-suite)), create or modify your custom page objects, TestDataService methods, or any related files.
540
+
541
+ After making your changes, build the project by running the following command in the ATS repository:
542
+ ```bash
543
+ npm run build
544
+ ```
545
+ This will generate the necessary artifacts in the `dist` folder.
546
+
547
+ Copy the generated artifacts (e.g., all files in the `dist` folder) from the ATS repository to your local Shopware instance's `node_modules` folder, specifically under the ATS package path:
548
+ ```bash
549
+ cp -R dist/* <path-to-your-shopware-instance>/tests/acceptance/node_modules/@shopware-ag/acceptance-test-suite/dist
550
+ ````
551
+ ### Adjust tests, Page Objects, and methods
552
+
553
+ In your Shopware instance, adjust any tests, page objects, TestDataService methods, or other related files to align them with the changes made in the ATS repository.
554
+
555
+ ### Run the tests
556
+
557
+ Execute the tests to verify your changes. Use the following command from your Shopware project's acceptance test directory:
558
+ ```bash
559
+ cd tests/acceptance
560
+ npx playwright test --ui
561
+ ```
562
+ This will launch the Playwright Test Runner UI where you can select and run specific tests.
563
+ By following these steps, you can work locally with the ATS and test your changes in your Shopware instance.
441
564
 
442
565
  ## Best practices
443
566
 
@@ -445,19 +568,20 @@ A good first read about this is the official [playwright best practices page](ht
445
568
 
446
569
  The most important part is [test isolation](https://playwright.dev/docs/best-practices#make-tests-as-isolated-as-possible) which helps to prevent flaky behavior and enables the test to be run in parallel and on systems with an unknown state.
447
570
 
448
-
449
571
  ### Dos
450
572
 
451
- - use fixtures or the [`TestDataService`](./src/services/TestDataService.ts)
452
- - create all the data that is required for your test case. That includes sales channels, customers and users (the page fixtures handle most of the common use cases)
573
+ - use the [`TestDataService`](./src/services/TestDataService.ts) for creating test data
574
+ - create all the data that is required for your test case. That includes sales channels, customers and users (the page fixtures handle most of the common use cases)...
575
+ - ...and clean it up if you don't need it anymore. The TestDataService will take care of it if you used it to create the test data
453
576
  - if you need specific settings for your test, set it explicitly for the user/customer/sales channel
454
577
  - directly jump to detail pages with the id of the entities you've created
455
578
  - if that's no possible, use the search with a unique name to filter lists to just that single entity
579
+ - if you need to skip tests, comment any relevant github issues as part of the skip method: `test.skip('Blocked by https://[...])`
456
580
 
457
581
  ### Don'ts
458
582
 
459
583
  - do not expect lists/tables to only contain one item, leverage unique ids/names to open or find your entity instead
460
- - same with helper functions, do not except to only get item back from the API. Always a unique criteria to the API call
584
+ - same with helper functions, do not expect to only get one item back from the API. Always use unique criteria to the API call
461
585
  - avoid unused fixtures: if you request a fixture but don't use any data from the fixture, the test or fixture should be refactored
462
586
  - do not depend on implicit configuration and existing data. Examples:
463
587
  - rules
@@ -466,34 +590,264 @@ The most important part is [test isolation](https://playwright.dev/docs/best-pra
466
590
  - do not expect the shop to have the defaults en_GB and EUR
467
591
  - do not change global settings (sales channel is ok, because it's created by us)
468
592
  - basically everything in Settings that is not specific to a sales channel (tax, search, etc.)
593
+
594
+ ### Sensitive Data / Credentials
595
+ Sometimes you have to provide sensitie data or credentials for your tests to run, for example credentials for a sandbox environment for a payment provider. Apart from avoiding to have those credentials in the acutal code, you should also prevent them from appearing in logs or traces. To achieve that you should outsource steps using sensitive data to another project, running before the actual test project, and disable traces for it.
596
+
597
+ **Example**
598
+ ```Typescript
599
+ projects: [
600
+ // Init project using sensitive data
601
+ {
602
+ name: 'init',
603
+ testMatch: /.*\.init\.ts/,
604
+ use : {trace : 'off'}
605
+ },
469
606
 
470
- ## Running Tests in the Test Suite
471
- If you want to work on the test suite and try to execute tests from within this repository, you have to run a corresponding docker image for a specific Shopware version.
607
+ {
608
+ // actual test project
609
+ // [...]
610
+ dependencies: ['init'],
611
+ }]
612
+ ```
613
+
614
+ ### Debugging API calls
615
+ Debugging API calls may not be an easy task at first glance, because if the call you made returns an error, it is not directly visible to you. But you can use the `errors[]`-array of the response and log that on the console.
616
+
617
+ **Example**
618
+ ```Typescript
619
+ const response = await this.AdminApiClient.post('some/route', {
620
+ data: {
621
+ limit: 1,
622
+ filter: [
623
+ {
624
+ type: 'equals',
625
+ field: 'someField',
626
+ value: 'someValue',
627
+ },
628
+ ],
629
+ },
630
+ });
631
+ const responseData = await response.json();
632
+ console.log(responseData.errors[0]);
633
+ ```
472
634
 
473
- We publish pre-built images at the [GitHub container registry](https://github.com/orgs/shopware/packages/container/package/acceptance-test-suite%2Ftest-image). The images are built on a daily basis, check to see which versions are available.
635
+ ## Code contribution
636
+ You can contribute to this project via its [official repository](https://github.com/shopware/acceptance-test-suite/) on GitHub.
474
637
 
475
- In order to select an image, export the corresponding tag as `SHOPWARE_VERSION` and start the containers:
638
+ This project uses [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/). Please make sure to form your commits accordingly to the spec.
476
639
 
477
- ```bash
478
- SHOPWARE_VERSION=trunk docker compose up --wait shopware
640
+ ## Services
641
+
642
+ The test suite provides several services that can be used to simplify your test code. These services are designed to be reusable and can be easily extended to fit your specific needs.
643
+
644
+ ### Test Data Service
645
+ The `TestDataService` is a powerful utility designed to simplify test data creation, management, and cleanup when writing acceptance and API tests for Shopware. It provides ready-to-use functions for common data needs and ensures reliable, isolated test environments.
646
+ For detailed documentation of the methods you can have a look at the [service class](https://github.com/shopware/acceptance-test-suite/blob/trunk/src/services/TestDataService.ts) or simply use the auto-completion of your IDE.
647
+
648
+ ### When to use the TestDataService in tests
649
+
650
+ You should use the `TestDataService` whenever you need **test data** that matches common Shopware structures, such as:
651
+
652
+ - Creating a **basic product**, **customer**, **order**, **category**, etc.
653
+ - Setting up **media** resources like product images or digital downloads.
654
+ - Creating **promotions**, **rules**, or **payment/shipping methods**.
655
+ - Fetching existing entities via helper methods (`getCurrency()`, `getShippingMethod()`, etc.).
656
+ - **Assigning relations** between entities (e.g., linking a product to a category).
657
+
658
+ **Typical examples include:**
659
+
660
+ ```typescript
661
+ const product = await TestDataService.createBasicProduct();
662
+ const customer = await TestDataService.createCustomer();
663
+ const shipping = await TestDataService.createBasicShippingMethod();
479
664
  ```
480
665
 
481
- <details>
482
- <summary>ℹ️ What if the version I'd like to test is not available as a pre-built image?</summary>
666
+ ### When and why to extend the TestDataService
483
667
 
484
- If you want to test with an image that's not available already, you can build it yourself by exporting a few more variables:
668
+ You should add new functions to the TestDataService (or extend it) when:
485
669
 
486
- ```bash
487
- export PHP_VERSION="8.3" # PHP version of the base image
488
- export SHOPWARE_VERSION="v6.5.8.0" # Shopware version to check out. This may bei either a branch or a tag, depending on the value of SHOPWARE_BUILD_SOURCE
489
- export SHOPWARE_BUILD_SOURCE="tag" # Either "branch" or "tag"
670
+ - Your project or plugin introduces **new entity types** (e.g., `CommercialCustomerGroup`, `CustomProductType`).
671
+ - You need a **specialized creation logic** (e.g., a shipping method with multiple rules, a pre-configured product bundle).
672
+ - Existing methods require **modifications** that should not affect the core service.
673
+ - You want to **reuse the same setup across multiple tests** without duplicating logic.
674
+ - You require **special cleanup handling** for newly created entities.
490
675
 
491
- docker compose up --attach-dependencies shopware # This will build the image if it's not available
676
+ Using and extending the `TestDataService` properly ensures your acceptance tests stay **readable**, **maintainable**, and **scalable** even as your Shopware project grows.
677
+
678
+ ### Available `create*` methods in TestDataService
679
+
680
+ These methods are designed to streamline the setup of test data, ensuring consistency and efficiency in your testing processes. They are much more available than listed below, but these are the most common ones. Please use your IDE auto-completion to find all available methods.
681
+
682
+ - `createBasicProduct(): Promise<Product>`
683
+ - `createVariantProducts(parentProduct: Product, propertyGroups: PropertyGroup[]): Promise<Product[]>`
684
+ - `createCustomer(): Promise<Customer>`
685
+ - `createCustomerGroup(): Promise<CustomerGroup>`
686
+ - `createOrder(lineItems: SimpleLineItem[], customer: Customer): Promise<Order>`
687
+ - `createCategory(): Promise<Category>`
688
+ - `createColorPropertyGroup(): Promise<PropertyGroup>`
689
+ - `createBasicPaymentMethod(): Promise<PaymentMethod>`
690
+ - `createBasicShippingMethod(): Promise<ShippingMethod>`
691
+
692
+ - [...]
693
+
694
+
695
+ ### Available `assign*` methods in TestDataService
696
+
697
+ These methods are designed to establish associations between entities, such as linking products to categories or assigning media to manufacturers, ensuring that your test data reflects realistic scenarios. They are much more available than listed below, but these are the most common ones. Please use your IDE auto-completion to find all available methods.
698
+
699
+ - `assignProductCategory(productId: string, categoryIds: string[]): Promise<void>`
700
+ - `assignProductManufacturer(productId: string, manufacturerId: string): Promise<void>`
701
+ - `assignProductMedia(productId: string, mediaId: string): Promise<void>`
702
+
703
+ - [...]
704
+
705
+ ### Available `get*` methods in TestDataService
706
+ They are much more available than listed below, but these are the most common ones. Please use your IDE auto-completion to find all available methods.
707
+
708
+ - `getCountry(iso2: string): Promise<Country>`
709
+ - `getCurrency(isoCode: string): Promise<Currency>`
710
+ - `getCustomerGroups(): Promise<CustomerGroup[]>`
711
+ - `getPaymentMethod(name = 'Invoice'): Promise<PaymentMethod>`
712
+
713
+ - [...]
714
+
715
+ ### Writing new methods in `TestDataService`
716
+
717
+ If you want to add new functionality to this service — such as a new type of entity creation — you can follow this approach:
718
+
719
+ #### 1. Define the purpose
720
+
721
+ Decide whether you're creating, assigning, or retrieving data. Most methods fall into one of the following patterns:
722
+ - `create*`: Creates a new entity (e.g. product, customer, category)
723
+ - `assign*`: Links existing entities (e.g. assign media to product)
724
+ - `get*`: Retrieves specific or filtered data from the system
725
+
726
+ #### 2. Implement the method
727
+
728
+ Use the `AdminApiContext` to interact with the Shopware Admin API. Here's a simplified example of adding a method to [create a new shipping method](https://github.com/shopware/acceptance-test-suite/blob/e8d2a5e8cee2194b914aa35aa87fe7cf04060834/src/services/TestDataService.ts#L679)
729
+
730
+ #### 3. Follow naming conventions
731
+
732
+ Be consistent in naming:
733
+ - Use `createBasic*` for standardized, default setups with predefined values (e.g. `createBasicProduct`)
734
+ - Use `create*With*` for variations (e.g. `createProductWithImage`)
735
+ - Use `assign*` for methods that associate two entities (e.g. `assignProductMedia`)
736
+ - Use `get*` to retrieve specific entities or lists (e.g. `getCurrency`)
737
+
738
+ #### 4. Add a return type
739
+
740
+ Always define a return type (typically a `Promise<...>`) to improve autocompletion and documentation support.
741
+
742
+ #### 5. Add cleanup logic
743
+
744
+ Make sure to clean up the entity via code after test run by putting the entity to a record. See example below:
745
+
746
+ ```typescript
747
+ async createBasicRule(): Promise<Rule> {
748
+ [...]
749
+
750
+ this.addCreatedRecord('rule', rule.id);
751
+
752
+ [...]
753
+ }
492
754
  ```
493
- </details>
494
755
 
495
- Afterwards you can execute the normal playwright commands:
756
+ Further information you can explore in the chapter: [Automatic Cleanup](#automatic-cleanup-of-test-data-and-system-configurations)
496
757
 
497
- ```bash
498
- npx playwright test --ui
758
+ #### 6. Test the method
759
+
760
+ Once added, use your new method inside a test to verify it works as expected (`/tests/TestDataService.spec.ts`):
761
+
762
+ ```typescript
763
+ test('Verify new shipping method creation', async ({ TestDataService }) => {
764
+ const shippingMethod = await TestDataService.createShippingMethod({
765
+ name: 'Express Delivery'
766
+ });
767
+
768
+ expect(shippingMethod.name).toEqual('Express Delivery');
769
+ });
499
770
  ```
771
+
772
+ ### Automatic cleanup of test data and system configurations
773
+
774
+ The `TestDataService` includes a built-in mechanism to ensure that any test data & system configuration entries created during a test run is automatically deleted afterward. This ensures that the Shopware instance remains clean and consistent between tests, helping to maintain **test isolation** and prevent **state leakage**.
775
+
776
+ #### How cleanup works
777
+
778
+ When you create an entity using a `create*` method (e.g., `createBasicProduct`, `createCustomer`), the service automatically registers that entity for deletion by calling the `addCreatedRecord()` method:
779
+ ```typescript
780
+ this.addCreatedRecord('product', product.id);
781
+ ```
782
+
783
+ These records are stored in a cleanup queue that is processed at the end of each test using the Playwright lifecycle.
784
+
785
+ #### Cleanup execution
786
+
787
+ The `cleanup()` method handles the deletion of all registered entities and system config changes. All created records are grouped into two categories:
788
+ * Priority Deletions (`priorityDeleteOperations`) – for entities with dependencies that must be deleted first (e.g. orders, customers)
789
+ * Standard Deletions (`deleteOperations`) – for all other entities
790
+
791
+ This prioritization prevents errors when deleting interdependent data. Any modified system configurations are reset to their previous state after deleting priority records.
792
+ The priority entities can be found in the `TestDataService` class. If you want to add a new entity to the priority deletion list, you can do so by adding it to the `priorityDeleteOperations` array.
793
+
794
+ #### Skipping cleanup
795
+
796
+ In rare scenarios, such as performance testing or debugging, you may want to prevent cleanup for specific entities. You can simply skip the cleanUp by calling `TestDataService.setCleanUp(false)` within your test.
797
+
798
+
799
+ ### Extending the TestDataService in external projects
800
+
801
+ The `TestDataService` is designed to be **easily extendable**. This allows you to add project-specific data generation methods while still benefiting from the existing, standardized base functionality.
802
+
803
+ #### 1. Create a new subclass
804
+
805
+ You can create a new TypeScript class that **extends** the base `TestDataService`.
806
+
807
+ ```typescript
808
+ import { TestDataService } from '@shopware-ag/acceptance-test-suite';
809
+
810
+ export class CustomTestDataService extends TestDataService {
811
+
812
+ async createCustomCustomerGroup(data: Partial<CustomerGroup>) {
813
+ const response = await this.adminApi.post('customer-group?_response=true', {
814
+ data: {
815
+ ...
816
+ },
817
+ });
818
+
819
+ const { data: createdGroup } = await response.json();
820
+ this.addCreatedRecord('customer-group', createdGroup.id);
821
+
822
+ return createdGroup;
823
+ }
824
+ }
825
+ ```
826
+
827
+ #### 2. Provide the extended service as a fixture
828
+
829
+ Following the Playwright [fixture system](https://playwright.dev/docs/test-fixtures) described in the README, you create a new fixture that initializes your extended service.
830
+
831
+ Example from `AcceptanceTest.ts`:
832
+
833
+ ```typescript
834
+ import { test as base } from '@shopware-ag/acceptance-test-suite';
835
+ import type { FixtureTypes } from '@shopware-ag/acceptance-test-suite';
836
+ import { CustomTestDataService } from './CustomTestData';
837
+
838
+ export * from '@shopware-ag/acceptance-test-suite';
839
+
840
+ export const test = base.extend<FixtureTypes & CustomTestDataService>({
841
+ TestDataService: async ({ AdminApiContext, DefaultSalesChannel }, use) => {
842
+ const service = new CustomTestDataService(AdminApiContext, DefaultSalesChannel);
843
+ await use(service);
844
+ await service.cleanUp();
845
+ },
846
+ });
847
+ ```
848
+
849
+ In this setup:
850
+ - The `TestDataService` fixture is **overridden** with your custom `CustomTestDataService`.
851
+ - Now all tests that use `TestDataService` will have access to both the original and your extended methods.
852
+ - The automated cleanup is still in place, ensuring that any test data created during the test run is removed afterward.
853
+
package/dist/index.d.mts CHANGED
@@ -1875,6 +1875,7 @@ declare class OrderDetail implements PageObject {
1875
1875
  readonly saveButton: Locator;
1876
1876
  readonly dataGridContextButton: Locator;
1877
1877
  readonly orderTag: Locator;
1878
+ readonly itemsCardHeader: Locator;
1878
1879
  constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
1879
1880
  url(orderId: string, tabName?: string): string;
1880
1881
  getCustomFieldCardLocators(customFieldSetName: string, customFieldTextName: string): Promise<{
package/dist/index.d.ts CHANGED
@@ -1875,6 +1875,7 @@ declare class OrderDetail implements PageObject {
1875
1875
  readonly saveButton: Locator;
1876
1876
  readonly dataGridContextButton: Locator;
1877
1877
  readonly orderTag: Locator;
1878
+ readonly itemsCardHeader: Locator;
1878
1879
  constructor(page: Page, instanceMeta: HelperFixtureTypes['InstanceMeta']);
1879
1880
  url(orderId: string, tabName?: string): string;
1880
1881
  getCustomFieldCardLocators(customFieldSetName: string, customFieldTextName: string): Promise<{
package/dist/index.mjs CHANGED
@@ -4866,9 +4866,15 @@ class OrderDetail {
4866
4866
  __publicField$v(this, "saveButton");
4867
4867
  __publicField$v(this, "dataGridContextButton");
4868
4868
  __publicField$v(this, "orderTag");
4869
+ __publicField$v(this, "itemsCardHeader");
4869
4870
  this.saveButton = page.locator(".sw-order-detail__smart-bar-save-button");
4870
4871
  this.dataGridContextButton = page.locator(".sw-data-grid__actions-menu").and(page.getByRole("button"));
4871
4872
  this.orderTag = page.locator(".sw-select-selection-list__item");
4873
+ if (satisfies(instanceMeta.version, "<6.7")) {
4874
+ this.itemsCardHeader = page.locator(".sw-card__header").getByText("Items");
4875
+ } else {
4876
+ this.itemsCardHeader = page.locator(".mt-card__header").getByText("Items");
4877
+ }
4872
4878
  }
4873
4879
  url(orderId, tabName = "general") {
4874
4880
  return `#/sw/order/detail/${orderId}/${tabName}`;
@@ -6415,7 +6421,7 @@ class CustomerBulkEdit {
6415
6421
  const changeTag = page.locator(".sw-bulk-edit-change-field-tags");
6416
6422
  this.changeTagsCheckbox = changeTag.getByRole("checkbox", { name: "Change: Tags" });
6417
6423
  this.changeTypeSelect = changeTag.locator(".sw-bulk-edit-change-type__selection");
6418
- this.enterTagsSelect = changeTag.locator(".sw-entity-multi-select");
6424
+ this.enterTagsSelect = changeTag.locator(".sw-entity-multi-select input");
6419
6425
  const customFields = page.locator(".sw-bulk-edit__custom-fields");
6420
6426
  this.customFieldArrowRightButton = customFields.locator(".sw-tabs__arrow--right");
6421
6427
  this.customFieldCheckbox = customFields.getByRole("checkbox");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopware-ag/acceptance-test-suite",
3
- "version": "11.15.2",
3
+ "version": "11.15.4",
4
4
  "description": "Shopware Acceptance Test Suite",
5
5
  "author": "shopware AG",
6
6
  "license": "MIT",