FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
BookStackApp-BookStack/tests/UrlTest.php at master · OneToolsCollection/BookStackApp-BookStack · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
OneToolsCollection
/
BookStackApp-BookStack
Public
forked from
BookStackApp/BookStack
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
BookStackApp-BookStack
/
tests
/
UrlTest.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
49 lines (39 loc) · 1.87 KB
Breadcrumbs
BookStackApp-BookStack
/
tests
/
UrlTest.php
Copy path
File metadata and controls
49 lines (39 loc) · 1.87 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
namespace
Tests
;
use
BookStack
\
Http
\
Request
;
class
UrlTest
extends
TestCase
{
public
function
test_url_helper_takes_custom_url_into_account
()
{
$
this
->
runWithEnv
([
'
APP_URL
'
=>
'
http://example.com/bookstack
'
],
function
() {
$
this
->
assertEquals
(
'
http://example.com/bookstack/books
'
,
url
(
'
/books
'
));
});
}
public
function
test_url_helper_sets_correct_scheme_even_when_request_scheme_is_different
()
{
$
this
->
runWithEnv
([
'
APP_URL
'
=>
'
https://example.com/
'
],
function
() {
$
this
->
get
(
'
http://example.com/login
'
)->
assertSee
(
'
https://example.com/dist/styles.css
'
);
});
}
public
function
test_app_url_forces_overrides_on_base_request
()
{
config
()->
set
(
'
app.url
'
,
'
https://donkey.example.com:8091/cool/docs
'
);
// Have to manually get and wrap request in our custom type due to testing mechanics
$
this
->
get
(
'
/login
'
);
$
bsRequest
= Request::
createFrom
(
request
());
$
this
->
assertEquals
(
'
https://donkey.example.com:8091
'
,
$
bsRequest
->
getSchemeAndHttpHost
());
$
this
->
assertEquals
(
'
/cool/docs
'
,
$
bsRequest
->
getBaseUrl
());
$
this
->
assertEquals
(
'
https://donkey.example.com:8091/cool/docs/login
'
,
$
bsRequest
->
getUri
());
}
public
function
test_app_url_without_path_does_not_duplicate_path_slash
()
{
config
()->
set
(
'
app.url
'
,
'
https://donkey.example.com
'
);
// Have to manually get and wrap request in our custom type due to testing mechanics
$
this
->
get
(
'
/settings
'
);
$
bsRequest
= Request::
createFrom
(
request
());
$
this
->
assertEquals
(
'
https://donkey.example.com
'
,
$
bsRequest
->
getSchemeAndHttpHost
());
$
this
->
assertEquals
(
''
,
$
bsRequest
->
getBaseUrl
());
$
this
->
assertEquals
(
'
/settings
'
,
$
bsRequest
->
getPathInfo
());
$
this
->
assertEquals
(
'
https://donkey.example.com/settings
'
,
$
bsRequest
->
getUri
());
}
}
Back
|
FazBrowse Home
|
New Git URL