Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MaarchCourrier
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Harbor Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maarch
MaarchCourrier
Commits
d59fa2b3
Commit
d59fa2b3
authored
6 years ago
by
Vinciane
Browse files
Options
Downloads
Patches
Plain Diff
FEAT #9207 correction NoteController
parent
a0717f63
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/note/controllers/NoteController.php
+5
-3
5 additions, 3 deletions
src/app/note/controllers/NoteController.php
test/unitTests/app/note/NoteControllerTest.php
+8
-11
8 additions, 11 deletions
test/unitTests/app/note/NoteControllerTest.php
with
13 additions
and
14 deletions
src/app/note/controllers/NoteController.php
+
5
−
3
View file @
d59fa2b3
...
...
@@ -37,13 +37,13 @@ class NoteController
return
$response
->
withJson
(
$aNotes
);
}
public
function
create
(
Request
$request
,
Response
$response
)
public
function
create
(
Request
$request
,
Response
$response
,
$aArgs
)
{
$data
=
$request
->
getParams
();
//Check data
$check
=
Validator
::
stringType
()
->
notEmpty
()
->
validate
(
$data
[
'note_text'
]);
$check
=
$check
&&
Validator
::
intVal
()
->
notEmpty
()
->
validate
(
$
data
[
'identifier
'
]);
//correspond to res_id
$check
=
$check
&&
Validator
::
intVal
()
->
notEmpty
()
->
validate
(
$
aArgs
[
'resId
'
]);
//correspond to res_id
$check
=
$check
&&
Validator
::
stringType
()
->
notEmpty
()
->
validate
(
$GLOBALS
[
'userId'
]);
if
(
isset
(
$data
[
'entities_chosen'
]))
{
...
...
@@ -54,10 +54,12 @@ class NoteController
return
$response
->
withStatus
(
400
)
->
withJson
([
'errors'
=>
'Bad Request'
]);
}
if
(
!
ResController
::
hasRightByResId
([
'resId'
=>
$
data
[
'identifier
'
],
'userId'
=>
$GLOBALS
[
'userId'
]]))
{
if
(
!
ResController
::
hasRightByResId
([
'resId'
=>
$
aArgs
[
'resId
'
],
'userId'
=>
$GLOBALS
[
'userId'
]]))
{
return
$response
->
withStatus
(
403
)
->
withJson
([
'errors'
=>
'Document out of perimeter'
]);
}
$data
[
'identifier'
]
=
$aArgs
[
'resId'
];
//Insert note in notes table and recover last insert ID
$noteId
=
NoteModel
::
create
(
$data
);
...
...
This diff is collapsed.
Click to expand it.
test/unitTests/app/note/NoteControllerTest.php
+
8
−
11
View file @
d59fa2b3
...
...
@@ -23,7 +23,7 @@ class NoteControllerTest extends TestCase
'limit'
=>
1
,
]);
$resID
=
$getResId
[
0
][
'res_id'
];
$resID
[
'resId'
]
=
$getResId
[
0
][
'res_id'
];
$noteController
=
new
\Note\controllers\NoteController
();
// CREATE WITH ALL DATA -> OK
...
...
@@ -32,13 +32,12 @@ class NoteControllerTest extends TestCase
$aArgs
=
[
'note_text'
=>
"Test d'ajout d'une note par php unit"
,
'identifier'
=>
$resID
,
'entities_chosen'
=>
[
'COU'
,
'CAB'
]
];
$fullRequest
=
\httpRequestCustom
::
addContentInBody
(
$aArgs
,
$request
);
$response
=
$noteController
->
create
(
$fullRequest
,
new
\Slim\Http\Response
());
$response
=
$noteController
->
create
(
$fullRequest
,
new
\Slim\Http\Response
()
,
$resID
);
$responseBody
=
json_decode
((
string
)
$response
->
getBody
());
self
::
$noteId
=
$responseBody
->
noteId
;
...
...
@@ -73,7 +72,7 @@ class NoteControllerTest extends TestCase
$this
->
assertSame
(
self
::
$noteId
,
$responseBody
[
'id'
]);
$this
->
assertSame
(
$GLOBALS
[
'userId'
],
$responseBody
[
'user_id'
]);
$this
->
assertSame
(
"Test d'ajout d'une note par php unit"
,
$responseBody
[
'note_text'
]);
$this
->
assertSame
(
$resID
,
$responseBody
[
'identifier'
]);
$this
->
assertSame
(
$resID
[
'resId'
]
,
$responseBody
[
'identifier'
]);
$this
->
assertInternalType
(
'array'
,
$responseBody
[
'entities'
]);
$this
->
assertSame
(
'COU'
,
$responseBody
[
'entities'
][
0
]);
$this
->
assertSame
(
'CAB'
,
$responseBody
[
'entities'
][
1
]);
...
...
@@ -84,13 +83,12 @@ class NoteControllerTest extends TestCase
$request
=
\Slim\Http\Request
::
createFromEnvironment
(
$environment
);
$aArgs
=
[
'note_text'
=>
"Test d'ajout d'une note par php unit"
,
'identifier'
=>
$resID
,
'note_text'
=>
"Test d'ajout d'une note par php unit"
];
$fullRequest
=
\httpRequestCustom
::
addContentInBody
(
$aArgs
,
$request
);
$response
=
$noteController
->
create
(
$fullRequest
,
new
\Slim\Http\Response
());
$response
=
$noteController
->
create
(
$fullRequest
,
new
\Slim\Http\Response
()
,
$resID
);
$responseBody
=
json_decode
((
string
)
$response
->
getBody
());
self
::
$noteId
=
$responseBody
->
noteId
;
...
...
@@ -125,22 +123,21 @@ class NoteControllerTest extends TestCase
$this
->
assertSame
(
self
::
$noteId
,
$responseBody
[
'id'
]);
$this
->
assertSame
(
$GLOBALS
[
'userId'
],
$responseBody
[
'user_id'
]);
$this
->
assertSame
(
"Test d'ajout d'une note par php unit"
,
$responseBody
[
'note_text'
]);
$this
->
assertSame
(
$resID
,
$responseBody
[
'identifier'
]);
$this
->
assertSame
(
$resID
[
'resId'
]
,
$responseBody
[
'identifier'
]);
$this
->
assertInternalType
(
'string'
,
$responseBody
[
'entities'
]);
$this
->
assertSame
(
''
,
$responseBody
[
'entities'
]);
// CREATE WITH
A REQUERY
MISSING
DATA
-> NOT OK
// CREATE WITH
NOTE_TEXT
MISSING -> NOT OK
$environment
=
\Slim\Http\Environment
::
mock
([
'REQUEST_METHOD'
=>
'POST'
]);
$request
=
\Slim\Http\Request
::
createFromEnvironment
(
$environment
);
$aArgs
=
[
'identifier'
=>
$resID
,
'entities_chosen'
=>
[
"COU"
,
"CAB"
]
];
$fullRequest
=
\httpRequestCustom
::
addContentInBody
(
$aArgs
,
$request
);
$response
=
$noteController
->
create
(
$fullRequest
,
new
\Slim\Http\Response
());
$response
=
$noteController
->
create
(
$fullRequest
,
new
\Slim\Http\Response
()
,
$resID
);
$responseBody
=
json_decode
((
string
)
$response
->
getBody
());
$this
->
assertSame
(
'Bad Request'
,
$responseBody
->
errors
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment