mirror of
https://github.com/go-gitea/gitea.git
synced 2025-11-03 17:25:10 +01:00
Merge 09b854a4f7d0d11477052f7403a8f93f787bd27f into 3ab8ae5807775a81069005a5abbd20bacfa0a15f
This commit is contained in:
commit
4c5506d879
17
.github/workflows/files-changed.yml
vendored
17
.github/workflows/files-changed.yml
vendored
@ -25,18 +25,19 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 3
|
timeout-minutes: 3
|
||||||
outputs:
|
outputs:
|
||||||
backend: ${{ steps.changes.outputs.backend }}
|
backend: ${{ vars.ACT_EXEC == 'true' && true || steps.changes.outputs.backend }}
|
||||||
frontend: ${{ steps.changes.outputs.frontend }}
|
frontend: ${{ vars.ACT_EXEC == 'true' && true || steps.changes.outputs.frontend }}
|
||||||
docs: ${{ steps.changes.outputs.docs }}
|
docs: ${{ vars.ACT_EXEC == 'true' && true || steps.changes.outputs.docs }}
|
||||||
actions: ${{ steps.changes.outputs.actions }}
|
actions: ${{ vars.ACT_EXEC == 'true' && true || steps.changes.outputs.actions }}
|
||||||
templates: ${{ steps.changes.outputs.templates }}
|
templates: ${{ vars.ACT_EXEC == 'true' && true || steps.changes.outputs.templates }}
|
||||||
docker: ${{ steps.changes.outputs.docker }}
|
docker: ${{ vars.ACT_EXEC == 'true' && true || steps.changes.outputs.docker }}
|
||||||
swagger: ${{ steps.changes.outputs.swagger }}
|
swagger: ${{ vars.ACT_EXEC == 'true' && true || steps.changes.outputs.swagger }}
|
||||||
yaml: ${{ steps.changes.outputs.yaml }}
|
yaml: ${{ vars.ACT_EXEC == 'true' && true || steps.changes.outputs.yaml }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v5
|
||||||
- uses: dorny/paths-filter@v3
|
- uses: dorny/paths-filter@v3
|
||||||
id: changes
|
id: changes
|
||||||
|
if: ${{ vars.ACT_EXEC != 'true'}}
|
||||||
with:
|
with:
|
||||||
filters: |
|
filters: |
|
||||||
backend:
|
backend:
|
||||||
|
|||||||
2
.github/workflows/pull-db-tests.yml
vendored
2
.github/workflows/pull-db-tests.yml
vendored
@ -183,7 +183,7 @@ jobs:
|
|||||||
go-version-file: go.mod
|
go-version-file: go.mod
|
||||||
check-latest: true
|
check-latest: true
|
||||||
- name: Add hosts to /etc/hosts
|
- name: Add hosts to /etc/hosts
|
||||||
run: '[ -e "/.dockerenv" ] || [ -e "/run/.containerenv" ] || echo "127.0.0.1 mysql elasticsearch smtpimap" | sudo tee -a /etc/hosts'
|
run: '[ -e "/.dockerenv" ] || [ -e "/run/.containerenv" ] || echo "127.0.0.1 mysql elasticsearch smtpimap redis minio" | sudo tee -a /etc/hosts'
|
||||||
- run: make deps-backend
|
- run: make deps-backend
|
||||||
- run: make backend
|
- run: make backend
|
||||||
env:
|
env:
|
||||||
|
|||||||
5
Makefile
5
Makefile
@ -455,7 +455,10 @@ test-frontend: node_modules ## test frontend files
|
|||||||
test-check:
|
test-check:
|
||||||
@echo "Running test-check...";
|
@echo "Running test-check...";
|
||||||
@diff=$$(git status -s); \
|
@diff=$$(git status -s); \
|
||||||
if [ -n "$$diff" ]; then \
|
if [ "$(ACT_EXEC)" = "true" ]; then \
|
||||||
|
echo "skip 'test-check' when using 'act_runner exec', please check it manually!"; \
|
||||||
|
exit 0; \
|
||||||
|
elif [ -n "$$diff" ]; then \
|
||||||
echo "make test-backend has changed files in the source tree:"; \
|
echo "make test-backend has changed files in the source tree:"; \
|
||||||
printf "%s" "$${diff}"; \
|
printf "%s" "$${diff}"; \
|
||||||
echo "You should change the tests to create these files in a temporary directory."; \
|
echo "You should change the tests to create these files in a temporary directory."; \
|
||||||
|
|||||||
@ -38,7 +38,7 @@ func redisServerCmd(t *testing.T) *exec.Cmd {
|
|||||||
}
|
}
|
||||||
c := &exec.Cmd{
|
c := &exec.Cmd{
|
||||||
Path: redisServerProg,
|
Path: redisServerProg,
|
||||||
Args: []string{redisServerProg, "--bind", "127.0.0.1", "--port", "6379"},
|
Args: []string{redisServerProg, "--bind", "redis", "--port", "6379"},
|
||||||
Dir: t.TempDir(),
|
Dir: t.TempDir(),
|
||||||
Stdin: os.Stdin,
|
Stdin: os.Stdin,
|
||||||
Stdout: os.Stdout,
|
Stdout: os.Stdout,
|
||||||
@ -55,16 +55,16 @@ func TestBaseRedis(t *testing.T) {
|
|||||||
_ = redisServer.Wait()
|
_ = redisServer.Wait()
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
if !waitRedisReady("redis://127.0.0.1:6379/0", 0) {
|
if !waitRedisReady("redis://redis:6379/0", 0) {
|
||||||
redisServer = redisServerCmd(t)
|
redisServer = redisServerCmd(t)
|
||||||
if redisServer == nil && os.Getenv("CI") == "" {
|
if redisServer == nil && os.Getenv("CI") == "" {
|
||||||
t.Skip("redis-server not found")
|
t.Skip("redis-server not found")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
assert.NoError(t, redisServer.Start())
|
assert.NoError(t, redisServer.Start())
|
||||||
require.True(t, waitRedisReady("redis://127.0.0.1:6379/0", 5*time.Second), "start redis-server")
|
require.True(t, waitRedisReady("redis://redis:6379/0", 5*time.Second), "start redis-server")
|
||||||
}
|
}
|
||||||
|
|
||||||
testQueueBasic(t, newBaseRedisSimple, toBaseConfig("baseRedis", setting.QueueSettings{Length: 10}), false)
|
testQueueBasic(t, newBaseRedisSimple, toBaseConfig("baseRedis", setting.QueueSettings{Length: 10, ConnStr: "redis://redis:6379/0"}), false)
|
||||||
testQueueBasic(t, newBaseRedisUnique, toBaseConfig("baseRedisUnique", setting.QueueSettings{Length: 10}), true)
|
testQueueBasic(t, newBaseRedisUnique, toBaseConfig("baseRedisUnique", setting.QueueSettings{Length: 10, ConnStr: "redis://redis:6379/0"}), true)
|
||||||
}
|
}
|
||||||
|
|||||||
@ -23,7 +23,7 @@ npx playwright install-deps
|
|||||||
|
|
||||||
## Run all tests via local act_runner
|
## Run all tests via local act_runner
|
||||||
```
|
```
|
||||||
act_runner exec -W ./.github/workflows/pull-e2e-tests.yml --event=pull_request --default-actions-url="https://github.com" -i catthehacker/ubuntu:runner-latest
|
act_runner exec -W ./.github/workflows/pull-e2e-tests.yml --event=pull_request --default-actions-url="https://github.com" --var ACT_EXEC=true -i catthehacker/ubuntu:runner-latest
|
||||||
```
|
```
|
||||||
|
|
||||||
## Run sqlite e2e tests
|
## Run sqlite e2e tests
|
||||||
|
|||||||
@ -19,7 +19,7 @@ make clean build
|
|||||||
### Run all jobs
|
### Run all jobs
|
||||||
|
|
||||||
```
|
```
|
||||||
act_runner exec -W ./.github/workflows/pull-db-tests.yml --event=pull_request --default-actions-url="https://github.com" -i catthehacker/ubuntu:runner-latest
|
act_runner exec -W ./.github/workflows/pull-db-tests.yml --event=pull_request --default-actions-url="https://github.com" --var ACT_EXEC=true -i catthehacker/ubuntu:runner-latest
|
||||||
```
|
```
|
||||||
|
|
||||||
Warning: This file defines many jobs, so it will be resource-intensive and therefor not recommended.
|
Warning: This file defines many jobs, so it will be resource-intensive and therefor not recommended.
|
||||||
@ -27,13 +27,13 @@ Warning: This file defines many jobs, so it will be resource-intensive and there
|
|||||||
### Run single job
|
### Run single job
|
||||||
|
|
||||||
```SHELL
|
```SHELL
|
||||||
act_runner exec -W ./.github/workflows/pull-db-tests.yml --event=pull_request --default-actions-url="https://github.com" -i catthehacker/ubuntu:runner-latest -j <job_name>
|
act_runner exec -W ./.github/workflows/pull-db-tests.yml --event=pull_request --default-actions-url="https://github.com" --var ACT_EXEC=true -i catthehacker/ubuntu:runner-latest -j <job_name>
|
||||||
```
|
```
|
||||||
|
|
||||||
You can list all job names via:
|
You can list all job names via:
|
||||||
|
|
||||||
```SHELL
|
```SHELL
|
||||||
act_runner exec -W ./.github/workflows/pull-db-tests.yml --event=pull_request --default-actions-url="https://github.com" -i catthehacker/ubuntu:runner-latest -l
|
act_runner exec -W ./.github/workflows/pull-db-tests.yml --event=pull_request --default-actions-url="https://github.com" --var ACT_EXEC=true -i catthehacker/ubuntu:runner-latest -l
|
||||||
```
|
```
|
||||||
|
|
||||||
## Run sqlite integration tests
|
## Run sqlite integration tests
|
||||||
|
|||||||
@ -17,7 +17,7 @@ make clean build
|
|||||||
### 运行所有任务
|
### 运行所有任务
|
||||||
|
|
||||||
```
|
```
|
||||||
act_runner exec -W ./.github/workflows/pull-db-tests.yml --event=pull_request --default-actions-url="https://github.com" -i catthehacker/ubuntu:runner-latest
|
act_runner exec -W ./.github/workflows/pull-db-tests.yml --event=pull_request --default-actions-url="https://github.com" --var ACT_EXEC=true -i catthehacker/ubuntu:runner-latest
|
||||||
```
|
```
|
||||||
|
|
||||||
警告:由于在此文件中定义了许多任务,因此此操作将花费太多的CPU和内存来运行。所以不建议这样做。
|
警告:由于在此文件中定义了许多任务,因此此操作将花费太多的CPU和内存来运行。所以不建议这样做。
|
||||||
@ -25,12 +25,12 @@ act_runner exec -W ./.github/workflows/pull-db-tests.yml --event=pull_request --
|
|||||||
### 运行单个任务
|
### 运行单个任务
|
||||||
|
|
||||||
```SHELL
|
```SHELL
|
||||||
act_runner exec -W ./.github/workflows/pull-db-tests.yml --event=pull_request --default-actions-url="https://github.com" -i catthehacker/ubuntu:runner-latest -j <job_name>
|
act_runner exec -W ./.github/workflows/pull-db-tests.yml --event=pull_request --default-actions-url="https://github.com" --var ACT_EXEC=true -i catthehacker/ubuntu:runner-latest -j <job_name>
|
||||||
```
|
```
|
||||||
|
|
||||||
您可以通过以下方式列出所有任务名称:
|
您可以通过以下方式列出所有任务名称:
|
||||||
```SHELL
|
```SHELL
|
||||||
act_runner exec -W ./.github/workflows/pull-db-tests.yml --event=pull_request --default-actions-url="https://github.com" -i catthehacker/ubuntu:runner-latest -l
|
act_runner exec -W ./.github/workflows/pull-db-tests.yml --event=pull_request --default-actions-url="https://github.com" --var ACT_EXEC=true -i catthehacker/ubuntu:runner-latest -l
|
||||||
```
|
```
|
||||||
|
|
||||||
## 如何使用 sqlite 数据库进行集成测试
|
## 如何使用 sqlite 数据库进行集成测试
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user