Skip to content

Commit 9105b27

Browse files
committed
Merge branch 'dev2' of https://github.com/ulue/swoft-component into dev2
2 parents 62d5d9e + 445bb09 commit 9105b27

File tree

4 files changed

+120
-4
lines changed

4 files changed

+120
-4
lines changed

.github/workflows/php.yml

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
#
2+
# Github actions for swoft component tests
3+
# https://github.com/marketplace?type=actions
4+
#
5+
name: Unit-tests
6+
7+
on: [push, pull_request]
8+
9+
# usage refer https://github.com/shivammathur/setup-php
10+
jobs:
11+
test:
12+
name: Test on php ${{ matrix.php}} and ${{ matrix.os }} OS
13+
runs-on: ${{ matrix.os }}
14+
timeout-minutes: 20
15+
env:
16+
SWOFT_DEBUG: 0
17+
strategy:
18+
fail-fast: true # fast fail
19+
matrix:
20+
php: [7.2, 7.3, 7.4, 8.0]
21+
os: [ubuntu-latest] # , macOS-latest, windows-latest
22+
swoole-versions: [''] # latest
23+
include:
24+
- os: 'ubuntu-latest'
25+
php: '7.1'
26+
swoole-versions: '-4.5.11'
27+
28+
steps:
29+
- uses: actions/checkout@v2
30+
# usage refer https://github.com/shivammathur/setup-php
31+
- name: Setup PHP
32+
timeout-minutes: 5
33+
uses: shivammathur/setup-php@v2
34+
with:
35+
php-version: ${{ matrix.php}}
36+
extensions: mbstring, dom, fileinfo, mysql, openssl, redis, swoole${{ matrix.swoole-versions }} #optional, setup extensions
37+
ini-values: post_max_size=56M, short_open_tag=On #optional, setup php.ini configuration
38+
coverage: none #optional, setup coverage driver: xdebug, none
39+
40+
- name: Display swoole extensions
41+
timeout-minutes: 1
42+
run: php --ri swoole
43+
# sudo pecl install -f swoole
44+
# echo 'no' | pecl install -f redis
45+
# sudo pecl update-channels && pecl install -f msgpack && pecl install -f igbinary && php -m
46+
47+
- name: Install dependencies
48+
run: composer install --no-progress --no-suggest
49+
50+
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
51+
# Docs: https://getcomposer.org/doc/articles/scripts.md
52+
53+
- name: Run test suite
54+
run: composer run test

.github/workflows/release.yml

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: Tag-release
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
8+
jobs:
9+
release:
10+
name: Test on php ${{ matrix.php}}
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 10
13+
strategy:
14+
fail-fast: true
15+
matrix:
16+
php: [7.3]
17+
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v2
21+
22+
- name: Set ENV for github-release
23+
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-commands-for-github-actions#setting-an-environment-variable
24+
run: |
25+
echo "RELEASE_TAG=${GITHUB_REF:10}" >> $GITHUB_ENV
26+
echo "RELEASE_NAME=$GITHUB_WORKFLOW" >> $GITHUB_ENV
27+
28+
# usage refer https://github.com/shivammathur/setup-php
29+
- name: Setup PHP
30+
timeout-minutes: 5
31+
uses: shivammathur/setup-php@v2
32+
with:
33+
php-version: ${{ matrix.php}}
34+
tools: pecl, php-cs-fixer, phpunit
35+
extensions: mbstring, dom, fileinfo, mysql, openssl # , swoole-4.4.19 #optional, setup extensions
36+
ini-values: post_max_size=56M, short_open_tag=On #optional, setup php.ini configuration
37+
coverage: none #optional, setup coverage driver: xdebug, none
38+
39+
- name: Install dependencies # eg: v1.0.3
40+
run: |
41+
tag1=${GITHUB_REF#refs/*/}
42+
echo "release tag: ${tag1}"
43+
composer install --no-progress --no-suggest
44+
45+
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
46+
# Docs: https://getcomposer.org/doc/articles/scripts.md
47+
48+
# - name: Build phar and send to github assets
49+
# run: |
50+
# echo $RELEASE_TAG
51+
# echo $RELEASE_NAME
52+
# php -d phar.readonly=0 bin/kite phar:pack -o kite-${RELEASE_TAG}.phar --no-progress
53+
# php kite-${RELEASE_TAG}.phar -V
54+
55+
# https://github.com/actions/create-release
56+
- uses: meeDamian/[email protected]
57+
with:
58+
gzip: false
59+
token: ${{ secrets.GITHUB_TOKEN }}
60+
tag: ${{ env.RELEASE_TAG }}
61+
name: ${{ env.RELEASE_TAG }}
62+
# files: kite-${{ env.RELEASE_TAG }}.phar

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "swoft/db",
33
"type": "library",
4-
"version": "v2.0.10",
4+
"version": "v2.0.11",
55
"keywords": [
66
"php",
77
"swoole",
@@ -23,7 +23,7 @@
2323
}
2424
},
2525
"require-dev": {
26-
"phpunit/phpunit": "^7.5"
26+
"phpunit/phpunit": "^7.5 || ^8.0"
2727
},
2828
"autoload-dev": {
2929
"psr-4": {

test/unit/Eloquent/ModelTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -780,14 +780,14 @@ public function testProp()
780780

781781
$expectSql = '`user_desc` = ?';
782782
$sql = User::whereProp('udesc', $desc)->toSql();
783-
$this->assertContains($expectSql, $sql);
783+
$this->assertStringContainsString($expectSql, $sql);
784784

785785
$expectSql1 = 'select * from `user` where (`user_desc` = ? and `test_json`->\'$."user_status"\' = ?)';
786786
$sql1 = User::whereProp([
787787
'udesc' => $desc,
788788
'test_json->user_status' => $rand
789789
])->toSql();
790-
$this->assertContains($expectSql1, $sql1);
790+
$this->assertStringContainsString($expectSql1, $sql1);
791791
}
792792

793793
public function testUpdateOrCreate()

0 commit comments

Comments
 (0)