-
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.
Merge remote-tracking branch 'origin/main'
# Conflicts: # .gitignore
- Loading branch information
Showing
53 changed files
with
1,917 additions
and
351 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: gitleaks | ||
|
||
on: [push,pull_request] | ||
|
||
jobs: | ||
gitleaks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: gitleaks-action | ||
uses: gitleaks/gitleaks-action@v1.6.0 |
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 @@ | ||
name: Testing | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
- master | ||
pull_request: | ||
branches: | ||
- dev | ||
- master | ||
workflow_dispatch: | ||
|
||
env: | ||
MODULE_NAME: MuckiSearchPlugin | ||
COMPOSER_NAME: muckiware/search-plugin | ||
TEST_DATABASE_URL: "mysql://root:root@127.0.0.1:3306/db_test" | ||
|
||
jobs: | ||
ci-current: | ||
name: SW ${{ matrix.shopware-versions }}, PHP ${{ matrix.php-versions }}, MySQL ${{ matrix.mysql-versions }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 15 | ||
fail-fast: false | ||
matrix: | ||
php-versions: [ '8.1', '8.2' ] | ||
mysql-versions: [ '8.0' ] | ||
shopware-versions: [ 'v6.5.3.0' ] | ||
services: | ||
mysql: | ||
image: mysql:${{ matrix.mysql-versions }} | ||
env: | ||
MYSQL_DATABASE: db_test | ||
MYSQL_ROOT_PASSWORD: root | ||
ports: | ||
- 3306:3306 | ||
|
||
steps: | ||
- name: Install PHP | ||
uses: shivammathur/setup-php@master | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
extensions: mbstring, xdebug, curl, dom, fileinfo, gd, iconv, intl, json, xml, mbstring, pdo, phar, zip, sodium, pdo_mysql | ||
tools: composer:2.6.6 | ||
|
||
- name: "Check PHP Version" | ||
run: php -v | ||
|
||
- name: "Check Composer Version" | ||
run: composer -V | ||
|
||
- name: "Check PHP Extensions" | ||
run: php -m | ||
|
||
- name: "checkout Shopware" | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: shopware/production | ||
ref: 'flex' | ||
|
||
- name: "Checkout ${{ env.COMPOSER_NAME }}" | ||
uses: actions/checkout@v3 | ||
with: | ||
path: custom/plugins/${{ env.MODULE_NAME }} | ||
|
||
- name: "Get composer cache directory" | ||
id: composer-cache | ||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
|
||
- name: "Cache Composer dependencies" | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ matrix.operating-system }}-${{ matrix.php-versions }}-${{ matrix.shopware-versions }}-${{ hashFiles('**/composer.lock') }} | ||
|
||
- name: "Install Shopware dependencies" | ||
# Install Shopware with --no-dev to prevent that dev-tools of the module got in conflict with the tools of shopware | ||
run: | | ||
composer req shopware/administration:${{ matrix.shopware-versions }} shopware/core:${{ matrix.shopware-versions }} shopware/elasticsearch:${{ matrix.shopware-versions }} shopware/storefront:${{ matrix.shopware-versions }} --no-update | ||
composer install --no-dev | ||
- name: "Install DEV-Tools" | ||
working-directory: custom/plugins/${{ env.MODULE_NAME }} | ||
run: | | ||
composer remove shopware/* --no-update | ||
composer install | ||
- name: "Install code-Tools" | ||
run: composer req phpunit/phpunit:^9.5 phpstan/phpstan | ||
|
||
- name: "Install Shopware" | ||
run: | | ||
echo APP_ENV=dev >> .env | ||
echo APP_URL=http://localhost >> .env | ||
echo DATABASE_URL=${{ env.TEST_DATABASE_URL }} >> .env | ||
echo APP_SECRET=secretf0rt3st >> .env | ||
bin/console system:install --basic-setup | ||
- name: "Run PHPUnit Tests" | ||
run: ./vendor/bin/phpunit --configuration="custom/plugins/${{ env.MODULE_NAME }}" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php declare(strict_types=1); | ||
|
||
use Symfony\Component\Dotenv\Dotenv; | ||
|
||
$projectRoot = $_SERVER['PROJECT_ROOT'] ?? dirname(__DIR__, 4); | ||
|
||
require_once $projectRoot . '/vendor/autoload.php'; | ||
|
||
if (file_exists($projectRoot . '/.env')) { | ||
(new Dotenv())->usePutEnv()->load($projectRoot . '/.env'); | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
parameters: | ||
ignoreErrors: | ||
- | ||
message: "#^Class Shopware\\\\Core\\\\Checkout\\\\Payment\\\\Exception\\\\AsyncPaymentProcessException constructor invoked with 3 parameters, 2 required\\.$#" | ||
count: 2 | ||
path: src/PaymentHandler/AbstractKlarnaPaymentHandler.php |
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,18 @@ | ||
parameters: | ||
level: 8 | ||
treatPhpDocTypesAsCertain: false | ||
checkMissingIterableValueType: false | ||
inferPrivatePropertyTypeFromConstructor: true | ||
reportUnmatchedIgnoredErrors: false | ||
# This can be useful from Shopware 6.4.15.0, but as long as we support lower versions we ignore it | ||
checkGenericClassInNonGenericObjectType: false | ||
tmpDir: var/cache/phpstan | ||
|
||
featureToggles: | ||
disableCheckMissingIterableValueType: false | ||
|
||
paths: | ||
- src | ||
|
||
bootstrapFiles: | ||
- bin/static-analyze-autoloader.php |
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,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" | ||
bootstrap="tests/TestBootstrap.php" | ||
executionOrder="random"> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">src</directory> | ||
</include> | ||
</coverage> | ||
<php> | ||
<ini name="error_reporting" value="-1"/> | ||
<server name="KERNEL_CLASS" value="Shopware\Core\Kernel"/> | ||
<env name="APP_ENV" value="test"/> | ||
<env name="APP_DEBUG" value="1"/> | ||
<env name="SHELL_VERBOSITY" value="1"/> | ||
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled" /> | ||
</php> | ||
<testsuites> | ||
<testsuite name="MuckiSearch Testsuite"> | ||
<directory>tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
</phpunit> |
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
Oops, something went wrong.