Skip to content

Commit c5c7df0

Browse files
authoredOct 27, 2024··
Merge pull request #949 from grasdk/feature/localtest
Feature/localtest
2 parents 679b1f7 + 8dad582 commit c5c7df0

File tree

4 files changed

+44
-1
lines changed

4 files changed

+44
-1
lines changed
 

‎.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,5 @@ test.*
4141
.DS_Store
4242
/coverage/
4343
.nyc_output/
44-
.vscode*
44+
.vscode*
45+
!test/setup-local.js # Excludes setup.js from the ignore rule

‎.mocharc.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
timeout: 20000, // Set timeout to 20 seconds (good for slow test setups)
3+
require: 'test/setup-local.js',
4+
recursive: true, // Run tests in subdirectories
5+
};

‎CONTRIBUTING.md

+31
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,34 @@ Client side:
105105
15. Setting `content` BehaviorSubject (rxjs) with the `ContentWrapperWithError` from the server.
106106
16. Rendering gallery: UI is data binded to the `galleryService.content` [gallery.component.html]
107107

108+
## Running the tests locally
109+
You can run tests in various ways. If you use VS Code, the built-in test explorer is a good way to visualize and run the tests. You can also run tests from the command line.
110+
111+
- Run all tests:
112+
113+
`npx mocha`
114+
- Run all tests in parallel and report with very verbose output (to debug tests that don't run):
115+
116+
`npx mocha --reporter spec --parallel`
117+
- Run a specific test (here the SettingsRouter in the backend):
118+
119+
`npx mocha ./test/backend/integration/routers/admin/SettingsRouter.js`
120+
121+
### MySQL / MariaDB tests
122+
The MySQL / MariaDB tests needs a separate database to be running during the test. If you have docker, you can start one with the required test-settings, using the command below:
123+
124+
`docker run --name pigallery_test -e MYSQL_ROOT_PASSWORD=password -e MYSQL_DATABASE=pigallery_test -e MYSQL_USER=user -e MYSQL_PASSWORD=password -p3306:3306 -d mariadb:10.3 --log-bin --binlog-format=MIXED`
125+
126+
Start this betfore running the tests in text explorer or the command line, if you want to include the MySQL tests.
127+
128+
Once you're finished with the testing, you can shut down the container again:
129+
130+
`docker stop pigallery_test`
131+
132+
or you can shut it down AND remove it:
133+
134+
`docker stop pigallery_test && docker rm pigallery_test`
135+
136+
137+
138+

‎test/setup-local.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
process.env.MYSQL_HOST = 'localhost';
2+
process.env.MYSQL_USERNAME = 'root';
3+
process.env.MYSQL_PASSWORD = 'password';
4+
process.env.MYSQL_PORT = '3306';
5+
process.env.PORT = '35000';
6+
process.env.CI = 'true';

0 commit comments

Comments
 (0)
Please sign in to comment.