|
Lines 68-77
Link Here
|
| 68 |
|
68 |
|
| 69 |
public static final String TEST_BUGZILLA_36_URL = getServerUrl("bugs36"); |
69 |
public static final String TEST_BUGZILLA_36_URL = getServerUrl("bugs36"); |
| 70 |
|
70 |
|
| 71 |
public static final String TEST_BUGZILLA_36_CUSTOM_URL = getServerUrl("bugs36customWF"); |
|
|
| 72 |
|
| 73 |
public static final String TEST_BUGZILLA_36_NO_XMLRPC = getServerUrl("bugs36noxmlrpc"); |
| 74 |
|
| 75 |
public static final String TEST_BUGZILLA_HEAD_URL = getServerUrl("bugshead"); |
71 |
public static final String TEST_BUGZILLA_HEAD_URL = getServerUrl("bugshead"); |
| 76 |
|
72 |
|
| 77 |
public static final String TEST_BUGZILLA_LATEST_URL = TEST_BUGZILLA_36_URL; |
73 |
public static final String TEST_BUGZILLA_LATEST_URL = TEST_BUGZILLA_36_URL; |
|
Lines 101-111
Link Here
|
| 101 |
public static BugzillaFixture BUGS_3_6 = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_36_URL, // |
97 |
public static BugzillaFixture BUGS_3_6 = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_36_URL, // |
| 102 |
"3.6", ""); |
98 |
"3.6", ""); |
| 103 |
|
99 |
|
| 104 |
public static BugzillaFixture BUGS_3_6_CUSTOM = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_36_CUSTOM_URL, // |
100 |
public static BugzillaFixture BUGS_3_6_CUSTOM_WF = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_36_URL |
| 105 |
"3.6", "CUSTOM-WF"); |
101 |
+ "-custom-wf", "3.6", "Custom Workflow"); |
| 106 |
|
102 |
|
| 107 |
public static BugzillaFixture BUGS_3_6_NO_XMLRPC = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_36_NO_XMLRPC, // |
103 |
public static BugzillaFixture BUGS_3_6_CUSTOM_WF_AND_STATUS = new BugzillaFixture( |
| 108 |
"3.6", "NO-XMLRPC"); |
104 |
BugzillaFixture.TEST_BUGZILLA_36_URL + "-custom-wf-and-status", "3.6", "Custom Workflow and Status"); |
|
|
105 |
|
| 106 |
public static BugzillaFixture BUGS_3_6_XML_RPC_DISABLED = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_36_URL |
| 107 |
+ "-xml-rpc-disabled", "3.6", "XML-RPC disabled"); |
| 109 |
|
108 |
|
| 110 |
public static BugzillaFixture BUGS_HEAD = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_HEAD_URL, // |
109 |
public static BugzillaFixture BUGS_HEAD = new BugzillaFixture(BugzillaFixture.TEST_BUGZILLA_HEAD_URL, // |
| 111 |
"3.7", ""); |
110 |
"3.7", ""); |
|
Lines 113-119
Link Here
|
| 113 |
public static BugzillaFixture DEFAULT = BUGS_3_6; |
112 |
public static BugzillaFixture DEFAULT = BUGS_3_6; |
| 114 |
|
113 |
|
| 115 |
public static final BugzillaFixture[] ALL = new BugzillaFixture[] { BUGS_2_22, BUGS_3_0, BUGS_3_2, BUGS_3_4, |
114 |
public static final BugzillaFixture[] ALL = new BugzillaFixture[] { BUGS_2_22, BUGS_3_0, BUGS_3_2, BUGS_3_4, |
| 116 |
BUGS_3_6, BUGS_3_6_CUSTOM, BUGS_3_6_NO_XMLRPC, BUGS_HEAD }; |
115 |
BUGS_3_6, BUGS_HEAD }; |
|
|
116 |
|
| 117 |
public static final BugzillaFixture[] ONLY_3_6_SPECIFIC = new BugzillaFixture[] { BUGS_3_6, |
| 118 |
BUGS_3_6_XML_RPC_DISABLED, BUGS_3_6_CUSTOM_WF, BUGS_3_6_CUSTOM_WF_AND_STATUS }; |
| 117 |
|
119 |
|
| 118 |
private final String version; |
120 |
private final String version; |
| 119 |
|
121 |
|