-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathserver.feature
More file actions
73 lines (62 loc) · 2.22 KB
/
Copy pathserver.feature
File metadata and controls
73 lines (62 loc) · 2.22 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
@require-php-7.2
Feature: Serve WordPress locally
Scenario: Vanilla install
Given a WP install
And I launch in the background `wp server --host=localhost --port=8181`
And I run `wp option set blogdescription 'Just another WordPress site'`
When I run `curl -sS localhost:8181`
Then STDOUT should contain:
"""
Just another WordPress site
"""
When I run `curl -sS localhost:8181/license.txt > /tmp/license.txt`
And I run `cmp /tmp/license.txt license.txt`
Then STDOUT should be empty
Scenario: Passthrough arguments to PHP binary
Given a WP install
And a mem.php file:
"""
<?php echo ini_get('memory_limit'); ?>
"""
And I launch in the background `wp server --host=localhost --port=8182 -- -dmemory_limit=256M`
When I run `curl -sS localhost:8182/mem.php`
Then STDOUT should be:
"""
256M
"""
Scenario: Access wp-login.php
Given a WP install
And I launch in the background `wp server --host=localhost --port=8182`
When I run `curl -sS http://localhost:8182/wp-login.php`
Then STDOUT should contain:
"""
wp-login.php
"""
Scenario: Pretty permalinks
Given a WP install
And I launch in the background `wp server --host=localhost --port=8183`
And I run `wp option update permalink_structure '/%postname%/'`
And I run `wp rewrite flush`
When I run `curl -sSL http://localhost:8183/hello-world/`
Then STDOUT should contain:
"""
Hello world!
"""
Scenario: Adapt HTTPS scheme to HTTP
Given a WP install
And a wp-content/mu-plugins/test-https-url.php file:
"""
<?php add_filter( 'wp_head', function() { echo '<meta name="test-https" content="https://localhost:8184/wp-content/uploads/test.jpg">'; } );
"""
And I run `wp option update home https://localhost:8184`
And I run `wp option update siteurl https://localhost:8184`
And I launch in the background `wp server --host=localhost --port=8184 --adapt-scheme`
When I run `curl -sS localhost:8184`
Then STDOUT should contain:
"""
http://localhost:8184/wp-content/uploads/test.jpg
"""
And STDOUT should not contain:
"""
https://localhost:8184
"""