-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathserver.feature
More file actions
53 lines (44 loc) · 1.5 KB
/
Copy pathserver.feature
File metadata and controls
53 lines (44 loc) · 1.5 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
@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!
"""