-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMigrateFormTest.php
120 lines (104 loc) · 3.54 KB
/
MigrateFormTest.php
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php
namespace Tests;
class MigrateFormTest extends TestCase
{
protected function paths($key = null)
{
$paths = [
'blueprint' => resource_path('blueprints/forms/contact.yaml'),
'form' => resource_path('forms/contact.yaml'),
'submissions' => storage_path('forms/contact'),
];
return $key ? $paths[$key] : $paths;
}
/** @test */
public function it_can_migrate_form()
{
$this->assertFileNotExists($this->paths('form'));
$this->artisan('statamic:migrate:form', ['handle' => 'contact']);
$this->assertFileExists($this->paths('form'));
$expected = [
'title' => 'Contact Me',
'store' => false,
'metrics' => [
[
'type' => 'total',
'label' => 'Total Responses',
],
[
'type' => 'sum',
'label' => 'Sum of Favorite Number',
'field' => 'number',
],
[
'type' => 'average',
'label' => 'Average Favorite Number',
'field' => 'number',
'precision' => 1,
],
],
'email' => [
[
'to' => 'to@example.com',
'from' => 'from@example.com',
'reply_to' => 'replyto@example.com',
'subject' => "You've got fan mail",
'template' => 'fan-mail',
],
],
];
$this->assertParsedYamlEquals($expected, $this->paths('form'));
}
/** @test */
public function it_can_migrate_fields_to_blueprint()
{
$this->assertFileNotExists($this->paths('blueprint'));
$this->artisan('statamic:migrate:form', ['handle' => 'contact']);
$this->assertFileExists($this->paths('blueprint'));
$expected = [
'title' => 'Contact Me',
'fields' => [
[
'handle' => 'name',
'field' => [
'type' => 'text',
'display' => 'Name',
'validate' => 'required|min:2',
],
],
[
'handle' => 'email',
'field' => [
'type' => 'text',
'display' => 'Email Address',
'validate' => 'required|email',
],
],
[
'handle' => 'number',
'field' => [
'type' => 'text',
'display' => 'Favorite Number',
'validate' => 'integer',
],
],
[
'handle' => 'comment',
'field' => [
'type' => 'text',
'display' => 'Comment',
'listable' => false,
],
],
],
];
$this->assertParsedYamlEquals($expected, $this->paths('blueprint'));
}
/** @test */
public function it_can_migrate_submissions()
{
$this->assertCount(0, $this->files->files($this->paths('submissions')));
$this->artisan('statamic:migrate:form', ['handle' => 'contact']);
$this->assertCount(2, $this->files->files($this->paths('submissions')));
}
}