Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
laravel-adminpanel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
laravel-adminpanel
Commits
613f5070
Commit
613f5070
authored
Apr 03, 2018
by
Viral Solani
Committed by
StyleCI Bot
Apr 03, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply fixes from StyleCI
parent
7000b869
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
82 additions
and
87 deletions
+82
-87
PagesController.php
app/Http/Controllers/Api/V1/PagesController.php
+2
-3
UsersController.php
app/Http/Controllers/Api/V1/UsersController.php
+0
-1
VerifyCsrfToken.php
app/Http/Middleware/VerifyCsrfToken.php
+1
-1
PagesRepository.php
app/Repositories/Backend/Pages/PagesRepository.php
+1
-4
PageFactory.php
database/factories/PageFactory.php
+7
-7
PageTest.php
tests/Feature/Api/V1/PageTest.php
+71
-71
No files found.
app/Http/Controllers/Api/V1/PagesController.php
View file @
613f5070
...
...
@@ -57,14 +57,13 @@ class PagesController extends APIController
*/
public
function
store
(
Request
$request
)
{
$validation
=
$this
->
validatePages
(
$request
);
if
(
$validation
->
fails
())
{
return
$this
->
throwValidation
(
$validation
->
messages
()
->
first
());
}
$page
=
$this
->
repository
->
create
(
$request
->
all
());
$page
=
$this
->
repository
->
create
(
$request
->
all
());
return
new
PagesResource
(
$page
);
}
...
...
app/Http/Controllers/Api/V1/UsersController.php
View file @
613f5070
...
...
@@ -2,7 +2,6 @@
namespace
App\Http\Controllers\Api\V1
;
use
App\Http\Requests\Backend\Access\User\ManageUserRequest
;
use
App\Http\Resources\UserResource
;
use
App\Models\Access\User\User
;
use
App\Repositories\Backend\Access\User\UserRepository
;
...
...
app/Http/Middleware/VerifyCsrfToken.php
View file @
613f5070
...
...
@@ -12,6 +12,6 @@ class VerifyCsrfToken extends BaseVerifier
* @var array
*/
protected
$except
=
[
'api/*'
'api/*'
,
];
}
app/Repositories/Backend/Pages/PagesRepository.php
View file @
613f5070
...
...
@@ -57,14 +57,11 @@ class PagesRepository extends BaseRepository
if
(
$page
=
Page
::
create
(
$input
))
{
event
(
new
PageCreated
(
$page
));
return
$page
;
}
throw
new
GeneralException
(
trans
(
'exceptions.backend.pages.create_error'
));
}
/**
...
...
database/factories/PageFactory.php
View file @
613f5070
...
...
@@ -10,15 +10,15 @@ $factory->define(Page::class, function (Faker $faker) {
$newestPage
=
Page
::
orderBy
(
'id'
,
'desc'
)
->
first
();
return
[
'title'
=>
$title
,
'page_slug'
=>
str_slug
(
$title
),
'description'
=>
$faker
->
paragraph
,
'cannonical_link'
=>
"http://localhost:8000/"
.
str_slug
(
$title
),
'created_by'
=>
function
()
{
'title'
=>
$title
,
'page_slug'
=>
str_slug
(
$title
),
'description'
=>
$faker
->
paragraph
,
'cannonical_link'
=>
'http://localhost:8000/'
.
str_slug
(
$title
),
'created_by'
=>
function
()
{
return
factory
(
User
::
class
)
->
create
()
->
id
;
},
'status'
=>
1
,
'created_at'
=>
Carbon\Carbon
::
now
(),
'updated_at'
=>
Carbon\Carbon
::
now
(),
'created_at'
=>
Carbon\Carbon
::
now
(),
'updated_at'
=>
Carbon\Carbon
::
now
(),
];
});
tests/Feature/Api/V1/PageTest.php
View file @
613f5070
...
...
@@ -2,29 +2,26 @@
namespace
Tests\Feature\Api\V1
;
use
Tests\TestCase
;
use
Illuminate\Foundation\Testing\WithFaker
;
use
Illuminate\Foundation\Testing\RefreshDatabase
;
use
Tests\BrowserKitTestCase
;
use
App\Models\Access\User\User
;
use
App\Models\Page\Page
;
use
JWTAuth
;
use
Tests\TestCase
;
class
PageTest
extends
TestCase
{
public
$token
=
''
;
public
$headers
=
''
;
public
$user
=
''
;
public
$token
=
''
;
public
$headers
=
''
;
public
$user
=
''
;
public
function
setUp
()
{
parent
::
setUp
();
$this
->
user
=
User
::
find
(
1
);
$this
->
token
=
JWTAuth
::
fromUser
(
$this
->
user
);
$this
->
headers
=
[
'Authorization'
=>
"Bearer "
.
$this
->
token
];
$this
->
headers
=
[
'Authorization'
=>
'Bearer '
.
$this
->
token
];
}
/**
* A basic test example.
*
...
...
@@ -36,40 +33,40 @@ class PageTest extends TestCase
}
/**
* A basic test to get response form pages api
* A basic test to get response form pages api
.
*
* @return void
*/
/** @test */
public
function
Get_records_from_pages
()
{
$payload
=
[];
$response
=
$this
->
json
(
'GET'
,
'/api/v1/pages'
,
$payload
,
$this
->
headers
);
$response
=
$this
->
json
(
'GET'
,
'/api/v1/pages'
,
$payload
,
$this
->
headers
);
$response
->
assertStatus
(
200
)
->
assertJsonStructure
([
'data'
=>
[
'data'
=>
[
[
"id"
,
"title"
,
"status_label"
,
"status"
,
"created_at"
,
"created_by"
]
'id'
,
'title'
,
'status_label'
,
'status'
,
'created_at'
,
'created_by'
,
]
,
],
'links'
,
'meta'
'meta'
,
]);
}
/**
* A basic test to get response form pages api
* A basic test to get response form pages api
.
*
* @return void
*/
/** @test */
public
function
get_one_created_page_from_db
()
{
...
...
@@ -79,101 +76,104 @@ class PageTest extends TestCase
$response
->
assertStatus
(
200
)
->
assertJson
([
"data"
=>
[
"id"
=>
$page
->
id
,
"title"
=>
$page
->
title
,
"status_label"
=>
$page
->
status_label
,
"status"
=>
(
$page
->
isActive
())
?
'Active'
:
'InActive'
,
"created_by"
=>
$page
->
created_by
,
'data'
=>
[
'id'
=>
$page
->
id
,
'title'
=>
$page
->
title
,
'status_label'
=>
$page
->
status_label
,
'status'
=>
(
$page
->
isActive
())
?
'Active'
:
'InActive'
,
'created_by'
=>
$page
->
created_by
,
],
]);
}
/**
* Author: Indra Shastri
* Date:03-03-2018
* A basic test to update a page from api
*
* A basic test to update a page from api
.
*
*
* @return void
*/
/** @test */
public
function
update_a_page_in_db_and_get_response
()
{
$page
=
make
(
Page
::
class
);
$payload
=
[
"title"
=>
$page
->
title
,
"description"
=>
$page
->
description
,
"cannonical_link"
=>
$page
->
cannonical_link
,
"seo_title"
=>
"some tittle"
,
"seo_keyword"
=>
"some keywords"
,
"seo_description"
=>
"<p> </p>↵<h1>SEO Description</h1>↵<p>some seco desctription</p>↵<p>askdsaj;ldsjfd</p>"
,
"status"
=>
"1"
,
'title'
=>
$page
->
title
,
'description'
=>
$page
->
description
,
'cannonical_link'
=>
$page
->
cannonical_link
,
'seo_title'
=>
'some tittle'
,
'seo_keyword'
=>
'some keywords'
,
'seo_description'
=>
'<p> </p>↵<h1>SEO Description</h1>↵<p>some seco desctription</p>↵<p>askdsaj;ldsjfd</p>'
,
'status'
=>
'1'
,
];
$response
=
""
;
$response
=
''
;
$response
=
$this
->
json
(
'PUT'
,
'/api/v1/pages/1'
,
$payload
,
$this
->
headers
);
$response
->
assertStatus
(
200
);
$response
->
assertJson
([
"data"
=>
[
"title"
=>
$page
->
title
,
"status_label"
=>
$page
->
status_label
,
"status"
=>
(
$page
->
isActive
())
?
'Active'
:
'InActive'
,
"created_by"
=>
""
.
$this
->
user
->
id
,
'data'
=>
[
'title'
=>
$page
->
title
,
'status_label'
=>
$page
->
status_label
,
'status'
=>
(
$page
->
isActive
())
?
'Active'
:
'InActive'
,
'created_by'
=>
''
.
$this
->
user
->
id
,
],
]);
}
/**
* Author: Indra Shastri
* Date:03-03-2018
* A basic test to create a page from api
* A basic test to create a page from api
.
*
* @return void
*/
/** @test */
public
function
create_a_new_page_in_db_and_get_response
()
{
$page
=
make
(
Page
::
class
);
$payload
=
[
"title"
=>
$page
->
title
,
"description"
=>
$page
->
description
,
"cannonical_link"
=>
$page
->
cannonical_link
,
"seo_title"
=>
"some tittle"
,
"seo_keyword"
=>
"some keywords"
,
"seo_description"
=>
"<p> </p>↵<h1>SEO Description</h1>↵<p>some seco desctription</p>↵<p>askdsaj;ldsjfd</p>"
,
"status"
=>
"1"
,
'title'
=>
$page
->
title
,
'description'
=>
$page
->
description
,
'cannonical_link'
=>
$page
->
cannonical_link
,
'seo_title'
=>
'some tittle'
,
'seo_keyword'
=>
'some keywords'
,
'seo_description'
=>
'<p> </p>↵<h1>SEO Description</h1>↵<p>some seco desctription</p>↵<p>askdsaj;ldsjfd</p>'
,
'status'
=>
'1'
,
];
$response
=
""
;
$response
=
''
;
$response
=
$this
->
json
(
'POST'
,
'/api/v1/pages'
,
$payload
,
$this
->
headers
);
$response
->
assertStatus
(
201
);
$response
->
assertJson
([
"data"
=>
[
"title"
=>
$page
->
title
,
"status_label"
=>
$page
->
status_label
,
"status"
=>
(
$page
->
isActive
())
?
'Active'
:
'InActive'
,
"created_by"
=>
$this
->
user
->
first_name
,
"created_at"
=>
(
\Carbon\Carbon
::
now
())
->
toDateString
()
'data'
=>
[
'title'
=>
$page
->
title
,
'status_label'
=>
$page
->
status_label
,
'status'
=>
(
$page
->
isActive
())
?
'Active'
:
'InActive'
,
'created_by'
=>
$this
->
user
->
first_name
,
'created_at'
=>
(
\Carbon\Carbon
::
now
())
->
toDateString
(),
],
]);
]);
}
/**
* Author: Indra Shastri
* Date:03-03-2018
* A basic test to create a page from api
* A basic test to create a page from api
.
*
* @return void
*/
/** @test */
public
function
delete_page_in_db_and_get_response
(){
public
function
delete_page_in_db_and_get_response
()
{
$page
=
create
(
Page
::
class
);
$payload
=
[];
$payload
=
[];
$response
=
$this
->
json
(
'DELETE'
,
'/api/v1/pages/'
.
$page
->
id
,
$payload
,
$this
->
headers
);
$response
->
assertStatus
(
200
)
->
assertJson
([
"message"
=>
"The Page was successfully deleted."
]);
'message'
=>
'The Page was successfully deleted.'
,
]);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment