Skip to content
This repository was archived by the owner on Apr 3, 2023. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
41cd56a
:sparkles: (Get users collection) Added an advanced search for route …
Jan 27, 2023
a407db4
:bug: (Dependency version) Updated some code to be able to be run wit…
Feb 2, 2023
8cd4cb0
:arrow_up: (General dependency upgrade) Many dependencies updated, so…
Jan 23, 2023
fc47ca9
:twisted_rightwards_arrows: (Branch dev) Refactored changes in branch…
Jan 27, 2023
a331c66
:bug: (fixture) GroupSeeder was crashing when updating database
Mar 27, 2022
6cee57c
:sparkles: (tests) Setup for the tests
Apr 22, 2022
3c2a16d
:white_check_mark: (tests) added tests for route GET /users
Apr 26, 2022
f3a8c22
:white_check_mark: (GET users/) Updated test structure + tested route…
Apr 27, 2022
4aa1e85
:white_check_mark: (GET users/) refactor tests structure
Apr 28, 2022
ebcde94
:white_check_mark: (GET /users) Enhanced tests + added EtuUTTApiTestCase
May 4, 2022
120a3b4
:recycle: (tests) 'test' user now saved + directory renamed
May 21, 2022
469db60
:white_check_mark: (GET /users/{id}) Added test for route GET /users/…
May 21, 2022
d359c8d
:sparkles: (EtuUTTApiTestCase) Added createUser method
Jun 3, 2022
74da716
:white_check_mark: (PATCH /users/{id}) Started tests
Jun 5, 2022
ca2deca
:white_check_mark: (DELETE /users/{id}) started tests for this route
Jun 5, 2022
0853fa0
:white_check_mark: (groups) added some tests for group + many more ra…
Feb 1, 2023
64714af
:sparkles: (Database tests) Added a way to backup the database and ch…
Feb 2, 2023
cada920
:white_check_mark: (GET /users) Updated tests to match new parameters…
Feb 3, 2023
f865c08
:white_check_mark: (/users routes) Added tests for parameter name. Ad…
Feb 3, 2023
dc954e3
:lock: (SQL injection) Fixed 2 SQL injection flaws in Filters
Feb 3, 2023
c40947b
:bug: (Fixed tests) Fixed some errors in tests
Feb 3, 2023
b5c119c
:bug: (Small bugs) Fixed 3 bugs
Feb 3, 2023
07410e9
:rotating_light: (tests) Linted tests folder
Feb 3, 2023
f16783b
:pencil: (README and code) Wrote documentation
Feb 3, 2023
a84e5f2
Simplified algorithm in GroupSeeder
TeddyRoncin Feb 26, 2023
15767e3
:arrow_up: (Faker) Replaced library fzaninotto/faker (deprecated) wit…
TeddyRoncin Feb 20, 2023
ad02aa2
:bug: (Dependency version) Updated some code to be able to be run wit…
Feb 2, 2023
b4b06ce
:arrow_up: (General dependency upgrade) Many dependencies updated, so…
Jan 23, 2023
d4a513e
:rewind: (UserDataVisibilityItemDataProvider) Removed a seemingly use…
Feb 26, 2023
6bc5b65
:bug: (GroupAdminVoter) Added a check for the type of $subject in the…
Feb 26, 2023
5e37b17
:bug: (PATCH /groups/{id} - security) object (the group to modify) wa…
Feb 26, 2023
9511fa6
:bug: (DELETE /groups/{id} - Security) The changes of the new GroupAd…
Feb 26, 2023
25f178b
:wrench: (.gitignore) Removed section "Old stuff" from .gitignore
Feb 26, 2023
82543e2
:label: (Group entity) All rates were integers, replaced them with fl…
Feb 26, 2023
67e9a58
:sparkles: (Helper method in EtuUTTApiTestCase) Added an helper metho…
Feb 26, 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,8 @@ docker compose -f docker-compose.yml -f docker-compose.dev.yml down
| ├── Security/ # Login process and Voters
| └── Util/ # Static classes to centralize simple tasks
├── tests/ # Automated tests (e.g. Unit tests)
| └── Groups/ # Tests for /groups routes
| └── Users/ # Tests for /users routes
├── var/ # Generated files (cache, logs, etc)
├── vendor/ # The third-party dependencies
├── .czrc # Git Commitizen configuration file
Expand Down
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