Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Feat/test setup #43

Draft
wants to merge 37 commits into
base: dev
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
8bb19d8
:sparkles: (Get users collection) Added an advanced search for route …
Jan 27, 2023
6c7a6f4
:bug: (Dependency version) Updated some code to be able to be run wit…
Feb 2, 2023
40622b0
:arrow_up: (General dependency upgrade) Many dependencies updated, so…
Jan 23, 2023
84ea9d6
:twisted_rightwards_arrows: (Branch dev) Refactored changes in branch…
Jan 27, 2023
9dfe858
:bug: (fixture) GroupSeeder was crashing when updating database
Mar 27, 2022
874f1da
:sparkles: (tests) Setup for the tests
Apr 22, 2022
2ab02cb
:white_check_mark: (tests) added tests for route GET /users
Apr 26, 2022
ee3e4b3
:white_check_mark: (GET users/) Updated test structure + tested route…
Apr 27, 2022
2dd7617
:white_check_mark: (GET users/) refactor tests structure
Apr 28, 2022
c29a3c2
:white_check_mark: (GET /users) Enhanced tests + added EtuUTTApiTestCase
May 4, 2022
ea429f6
:recycle: (tests) 'test' user now saved + directory renamed
May 21, 2022
6427603
:white_check_mark: (GET /users/{id}) Added test for route GET /users/…
May 21, 2022
d5089eb
:sparkles: (EtuUTTApiTestCase) Added createUser method
Jun 3, 2022
76bb314
:white_check_mark: (PATCH /users/{id}) Started tests
Jun 5, 2022
04f644b
:white_check_mark: (DELETE /users/{id}) started tests for this route
Jun 5, 2022
a9922c2
:white_check_mark: (groups) added some tests for group + many more ra…
Feb 1, 2023
fe16662
:sparkles: (Database tests) Added a way to backup the database and ch…
Feb 2, 2023
9e1a6b0
:white_check_mark: (GET /users) Updated tests to match new parameters…
Feb 3, 2023
fc185cf
:white_check_mark: (/users routes) Added tests for parameter name. Ad…
Feb 3, 2023
28d8dfb
:lock: (SQL injection) Fixed 2 SQL injection flaws in Filters
Feb 3, 2023
9d2e5f1
:bug: (Fixed tests) Fixed some errors in tests
Feb 3, 2023
bdd4c76
:bug: (Small bugs) Fixed 3 bugs
Feb 3, 2023
46e20ce
:rotating_light: (tests) Linted tests folder
Feb 3, 2023
c31a92c
:pencil: (README and code) Wrote documentation
Feb 3, 2023
4161407
Simplified algorithm in GroupSeeder
TeddyRoncin Feb 26, 2023
082112b
:arrow_up: (Faker) Replaced library fzaninotto/faker (deprecated) wit…
TeddyRoncin Feb 20, 2023
08a18f1
:bug: (Dependency version) Updated some code to be able to be run wit…
Feb 2, 2023
2b4ae74
:arrow_up: (General dependency upgrade) Many dependencies updated, so…
Jan 23, 2023
265781b
:rewind: (UserDataVisibilityItemDataProvider) Removed a seemingly use…
Feb 26, 2023
f5c8596
:bug: (GroupAdminVoter) Added a check for the type of $subject in the…
Feb 26, 2023
262c87b
:bug: (PATCH /groups/{id} - security) object (the group to modify) wa…
Feb 26, 2023
c6993e3
:bug: (DELETE /groups/{id} - Security) The changes of the new GroupAd…
Feb 26, 2023
e79a2f0
:wrench: (.gitignore) Removed section "Old stuff" from .gitignore
Feb 26, 2023
8f4763e
:label: (Group entity) All rates were integers, replaced them with fl…
Feb 26, 2023
29f9e06
:sparkles: (Helper method in EtuUTTApiTestCase) Added an helper metho…
Feb 26, 2023
490a314
:rewind: (Splitting branch) Removed folders test/Groups and test/Users
Feb 27, 2023
aee95f6
:rewind: (Splitting branch) Removed features that should not be in th…
Feb 27, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,7 @@
.vscode/
.idea/

## Old stuff
.php_cs.cache
###> phpunit/phpunit ###
/phpunit.xml
.phpunit.result.cache
###< phpunit/phpunit ###
2 changes: 2 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"symfony/intl": "6.2.0",
"symfony/mailer": "6.2.2",
"symfony/mime": "6.2.2",
"symfony/http-foundation": "6.2.2",
"symfony/monolog-bundle": "^3.1",
"symfony/notifier": "6.2.0",
"symfony/process": "6.2.0",
Expand Down Expand Up @@ -55,6 +56,7 @@
"symfony/browser-kit": "6.2.0",
"symfony/css-selector": "6.2.3",
"symfony/debug-bundle": "6.2.1",
"phpunit/phpunit": "^9.5",
"symfony/maker-bundle": "^1.0",
"symfony/phpunit-bridge": "6.2.3",
"symfony/stopwatch": "6.2.0",
Expand Down
Loading