Skip to content

Commit

Permalink
prevent applying str_contains on null value (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
solverat authored Oct 30, 2024
1 parent c7381c1 commit 1196cb3
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 22 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/codeception.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,13 @@ jobs:
matrix:
php: [ 8.2 ]
symfony: [ ^6.2 ]
pimcore: [ ~11.0.0 ]
pimcore: [ ~11.2.0 ]
include:
- pimcore: ~11.0.0
- pimcore: ~11.2.0
template_tag: v11.0.0
steps:
- uses: actions/checkout@v2
- uses: nanasess/setup-chromedriver@v2
- uses: actions/checkout@v4
with:
path: lib/test-bundle

Expand Down Expand Up @@ -105,20 +106,22 @@ jobs:

- name: Setup Chromium
run: |
nohup $CHROMEWEBDRIVER/chromedriver --url-base=/wd/hub /dev/null 2>&1 &
export DISPLAY=:99
chromedriver --url-base=/wd/hub --port=9515 &
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 &
- name: Start Webserver and Chrome
- name: Start Symfony Server
run: |
curl -sS https://get.symfony.com/cli/installer | bash -s -- --install-dir=$HOME/.symfony/bin
~/.symfony/bin/symfony server:start --port=8080 --dir=public --allow-http --no-tls --daemon
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache Composer Downloads
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
Expand Down Expand Up @@ -150,7 +153,7 @@ jobs:
vendor/bin/codecept run --env github -c ${{ github.workspace }}/lib/test-bundle
- name: Log Output
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: failure()
with:
name: "Logs (PHP ${{ matrix.php }}, Pimcore ${{ matrix.pimcore }}, Symfony ${{ matrix.symfony }})"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ jobs:
matrix:
php: [ 8.2 ]
symfony: [ ^6.2 ]
pimcore: [ ~11.0.0 ]
pimcore: [ ~11.2.0 ]
include:
- pimcore: ~11.0.0
- pimcore: ~11.2.0
template_tag: v11.0.0
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: lib/test-bundle

Expand Down Expand Up @@ -88,10 +88,10 @@ jobs:
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache Composer Downloads
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
Expand Down
14 changes: 9 additions & 5 deletions .github/workflows/php-stan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ jobs:
matrix:
php: [ 8.2 ]
symfony: [ ^6.2 ]
pimcore: [ ~11.0.0 ]
pimcore: [ ~11.2.0 ]
include:
- pimcore: ~11.0.0
- pimcore: ~11.2.0
template_tag: v11.0.0
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: lib/test-bundle

Expand Down Expand Up @@ -88,10 +88,10 @@ jobs:
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache Composer Downloads
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
Expand All @@ -110,6 +110,10 @@ jobs:
run: |
bin/console assets:install public --relative --symlink
- name: Validate Container
run: |
bin/console lint:container
- name: Php Stan
run: |
bin/console cache:warmup --env=test
Expand Down
2 changes: 2 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Upgrade Notes

## 5.1.1
- [IMPROVEMENT] prevent applying str_contains on null value
## 5.1.0
- [FEATURE] pimcore backend: object preview button
## 5.0.6
Expand Down
4 changes: 2 additions & 2 deletions src/Manager/I18nContextManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ protected function buildLocaleDefinition(RouteItemInterface $routeItem): LocaleD
$languageIso = $locale;
$countryIso = Definitions::INTERNATIONAL_COUNTRY_NAMESPACE;

if (str_contains($baseLocale, '_')) {
if ($baseLocale !== null && str_contains($baseLocale, '_')) {
$parts = explode('_', $baseLocale);
$languageIso = strtolower($parts[0]);
if (isset($parts[1]) && !empty($parts[1])) {
if (!empty($parts[1])) {
$countryIso = strtoupper($parts[1]);
}
}
Expand Down
5 changes: 3 additions & 2 deletions tests/_envs/github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ modules:
port: 9515
restart: true
wait: 1
window_size: 1280x1024
capabilities:
chromeOptions:
args: ['--no-sandbox', '--disable-extensions', '--headless', '--disable-gpu', '--disable-dev-shm-usage', '--window-size=1024,768']
'goog:chromeOptions':
args: ['--no-sandbox', '--disable-extensions', '--headless', '--disable-gpu', '--disable-dev-shm-usage', '--window-size=1280,1024']
prefs:
download.default_directory: '%TEST_BUNDLE_TEST_DIR%/_data/downloads'

0 comments on commit 1196cb3

Please sign in to comment.