forked from diesel-rs/diesel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.rs
More file actions
242 lines (186 loc) · 6.98 KB
/
Copy pathsetup.rs
File metadata and controls
242 lines (186 loc) · 6.98 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
#[cfg(feature = "postgres")]
use std::path::Path;
use support::{database, project};
#[test]
fn setup_creates_database() {
let p = project("setup_creates_database").build();
let db = database(&p.database_url());
// sanity check
assert!(!db.exists());
let result = p.command("setup").run();
assert!(result.is_success(), "Result was unsuccessful {:?}", result);
assert!(db.exists());
}
#[test]
fn setup_creates_migrations_directory() {
let p = project("setup_creates_migrations_directory").build();
// make sure the project builder doesn't create it for us
assert!(!p.has_file("migrations"));
let result = p.command("setup").run();
assert!(result.is_success(), "Result was unsuccessful {:?}", result);
assert!(p.has_file("migrations"));
}
#[test]
#[cfg(feature = "postgres")]
fn setup_initial_migration_returns_nothing_to_console() {
let p = project("setup_initial_migration_returns_nothing_to_console").build();
let result = p.command("setup").run();
assert!(!result.stdout().contains("Running migration"));
}
#[test]
#[cfg(feature = "postgres")]
fn setup_creates_default_migration_file() {
let p = project("setup_creates_default_migration_file").build();
let result = p.command("setup").run();
assert!(result.is_success(), "Result was unsuccessful {:?}", result);
assert!(p.has_file(Path::new("migrations").join("00000000000000_diesel_initial_setup")));
}
#[test]
#[cfg(feature = "postgres")]
fn setup_creates_default_migration_file_if_project_is_otherwise_setup() {
let p = project("setup_creates_default_migration_file_if_project_is_otherwise_setup").build();
let initial_migration_path =
Path::new("migrations").join("00000000000000_diesel_initial_setup");
let result = p.command("setup").run();
assert!(result.is_success(), "Result was unsuccessful {:?}", result);
p.delete_file(&initial_migration_path);
let result = p.command("setup").run();
assert!(result.is_success(), "Result was unsuccessful {:?}", result);
assert!(p.has_file(&initial_migration_path));
}
#[test]
fn setup_creates_schema_table() {
let p = project("setup_creates_schema_table").build();
let db = database(&p.database_url());
let result = p.command("setup").run();
assert!(result.is_success(), "Result was unsuccessful {:?}", result);
assert!(db.table_exists("__diesel_schema_migrations"));
}
#[test]
fn setup_runs_migrations_if_no_schema_table() {
let p = project("setup_runs_migrations_if_no_schema_table")
.folder("migrations")
.build();
let db = database(&p.database_url());
p.create_migration(
"12345_create_users_table",
"CREATE TABLE users ( id INTEGER )",
"DROP TABLE users",
);
// sanity check
assert!(!db.exists());
let result = p.command("setup").run();
assert!(result.is_success(), "Result was unsuccessful {:?}", result);
assert!(
result.stdout().contains("Running migration 12345"),
"Unexpected stdout {}",
result.stdout()
);
assert!(db.table_exists("users"));
}
#[test]
fn setup_doesnt_run_migrations_if_schema_table_exists() {
let p = project("setup_doesnt_run_migrations_if_schema_table_exists")
.folder("migrations")
.build();
let db = database(&p.database_url()).create();
db.execute("CREATE TABLE __diesel_schema_migrations ( version INTEGER )");
p.create_migration(
"12345_create_users_table",
"CREATE TABLE users ( id INTEGER )",
"DROP TABLE users",
);
let result = p.command("setup").run();
assert!(result.is_success(), "Result was unsuccessful {:?}", result);
assert!(!db.table_exists("users"));
}
#[test]
fn setup_notifies_when_creating_a_database() {
let p = project("setup_notifies").build();
let result = p.command("setup").run();
assert!(
result.stdout().contains("Creating database:"),
"Unexpected stdout {}",
result.stdout()
);
}
#[test]
#[allow(unused_variables)]
fn setup_doesnt_notify_when_not_creating_a_database() {
let p = project("setup_doesnt_notify").build();
let db = database(&p.database_url()).create();
let result = p.command("setup").run();
assert!(
!result.stdout().contains("Creating database:"),
"Unexpected stdout {}",
result.stdout()
);
}
#[test]
fn setup_works_with_migration_dir_by_arg() {
let p = project("setup_works_with_migration_dir_by_arg").build();
// make sure the project builder doesn't create it for us
assert!(!p.has_file("migrations"));
assert!(!p.has_file("foo"));
let result = p.command("setup").arg("--migration-dir=foo").run();
assert!(result.is_success(), "Result was unsuccessful {:?}", result);
assert!(!p.has_file("migrations"));
assert!(p.has_file("foo"));
}
#[test]
fn setup_works_with_migration_dir_by_env() {
let p = project("setup_works_with_migration_dir_by_env").build();
// make sure the project builder doesn't create it for us
assert!(!p.has_file("migrations"));
assert!(!p.has_file("bar"));
let result = p.command("setup").env("MIGRATION_DIRECTORY", "bar").run();
assert!(result.is_success(), "Result was unsuccessful {:?}", result);
assert!(!p.has_file("migrations"));
assert!(p.has_file("bar"));
}
#[test]
fn setup_creates_config_file() {
let p = project("setup_creates_config_file").build();
// Make sure the project builder didn't create the file
assert!(!p.has_file("diesel.toml"));
let result = p.command("setup").run();
assert!(result.is_success(), "Result was unsuccessful {:?}", result);
assert!(p.has_file("diesel.toml"));
assert!(p
.file_contents("diesel.toml")
.contains("diesel.rs/guides/configuring-diesel-cli"));
}
#[test]
fn setup_can_take_config_file_by_env() {
let p = project("setup_can_take_config_file_by_env").build();
// Make sure the project builder didn't create the file
assert!(!p.has_file("diesel.toml"));
assert!(!p.has_file("foo"));
let result = p.command("setup").env("DIESEL_CONFIG_FILE", "foo").run();
assert!(result.is_success(), "Result was unsuccessful {:?}", result);
assert!(!p.has_file("diesel.toml"));
assert!(p.has_file("foo"));
assert!(p
.file_contents("foo")
.contains("diesel.rs/guides/configuring-diesel-cli"));
}
#[test]
fn setup_can_take_config_file_by_param() {
let p = project("setup_can_take_config_file_by_param").build();
// Make sure the project builder didn't create the file
assert!(!p.has_file("diesel.toml"));
assert!(!p.has_file("foo"));
assert!(!p.has_file("bar"));
let result = p
.command("setup")
.env("DIESEL_CONFIG_FILE", "foo")
.arg("--config-file=bar")
.run();
assert!(result.is_success(), "Result was unsuccessful {:?}", result);
assert!(!p.has_file("diesel.toml"));
assert!(!p.has_file("foo"));
assert!(p.has_file("bar"));
assert!(p
.file_contents("bar")
.contains("diesel.rs/guides/configuring-diesel-cli"));
}