forked from danielwertheim/mycouch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestenvironments.samples.json
78 lines (76 loc) · 2.01 KB
/
testenvironments.samples.json
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
These are just samples of testenvironments. The contexts controls what kind of tests to run.
The one with a key="YourComputername" or key = "Default" will be picked.
[{
"Key": "Sample-LOCAL",
"Supports": [
"client",
"attachmentscontext",
"databasecontext",
"databasescontext",
"changescontext",
"documentscontext",
"entitiescontext",
"viewscontext",
"listscontext",
"showscontext",
"mycouchstore",
"createdbs",
"deletedbs",
"replication"],
"ServerUrl": "http://localhost:5984",
"PrimaryDbName": "mycouchtests_pri",
"SecondaryDbName": "mycouchtests_sec",
"TempDbName": "mycouchtests_tmp",
"User":"sa",
"Password":"test"
},
{
"Key": "Sample-EVERYTHING-LOCAL",
"Supports": [
"client",
"attachmentscontext",
"databasecontext",
"databasescontext",
"changescontext",
"documentscontext",
"entitiescontext",
"viewscontext",
"listscontext",
"showscontext",
"mycouchstore",
"createdbs",
"deletedbs",
"compactdbs",
"viewcleanup",
"replication"],
"ServerUrl": "http://localhost:5984",
"PrimaryDbName": "mycouchtests_pri",
"SecondaryDbName": "mycouchtests_sec",
"TempDbName": "mycouchtests_tmp",
"User":"sa",
"Password":"test"
},
{
"Key": "Sample-CLOUDANT",
"Supports": [
"cloudant",
"client",
"searchescontext",
"queriescontext",
"securitycontext",
"attachmentscontext",
"databasecontext",
"databasescontext",
"documentscontext",
"entitiescontext",
"viewscontext",
"listscontext",
"showscontext",
"mycouchstore"],
"ServerUrl": "https://youraccount.cloudant.com",
"PrimaryDbName": "mycouchtests_pri",
"SecondaryDbName": "mycouchtests_sec",
"TempDbName": "mycouchtests_tmp",
"User":"an API key",
"Password":"some password"
}]