Skip to content

Commit fee000a

Browse files
authored
[TEST] Redirect links to new locations (#30179)
We had a number of awaitsFix links that weren't updated after the xpack merge. Where possible I changed the links to the new locations, but in some circumstances the original ticket was closed (suggesting the awaitsfix should be removed) or was otherwise unclear the status.
1 parent 7ae3b3b commit fee000a

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

x-pack/plugin/monitoring/src/test/java/org/elasticsearch/xpack/monitoring/integration/MonitoringIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public void testMonitoringBulk() throws Exception {
187187
* This test waits for the monitoring service to collect monitoring documents and then checks that all expected documents
188188
* have been indexed with the expected information.
189189
*/
190-
@AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/4150")
190+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/29880")
191191
@SuppressWarnings("unchecked")
192192
public void testMonitoringService() throws Exception {
193193
final boolean createAPMIndex = randomBoolean();

x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/execution/search/extractor/FieldHitExtractorTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ protected FieldHitExtractor mutateInstance(FieldHitExtractor instance) throws IO
4949
return new FieldHitExtractor(instance.fieldName() + "mutated", true, instance.hitName());
5050
}
5151

52-
@AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/3082")
52+
@AwaitsFix(bugUrl = "implement after we're sure of the InnerHitExtractor's implementation")
5353
public void testGetNested() throws IOException {
5454
fail("implement after we're sure of the InnerHitExtractor's implementation");
5555
}

x-pack/plugin/src/test/resources/rest-api-spec/test/upgrade/10_basic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
setup:
33
- skip:
44
version: "all"
5-
reason: "AwaitsFix'ing, see x-pack-elasticsearch #4197"
5+
reason: "AwaitsFix'ing, see https://github.com/elastic/elasticsearch/issues/29890"
66
- do:
77
xpack.license.post:
88
body: >

x-pack/plugin/watcher/src/test/java/org/elasticsearch/xpack/watcher/test/integration/BootStrapTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public void testLoadMalformedWatchRecord() throws Exception {
145145
assertThat(response.getWatchesCount(), equalTo(1L));
146146
}
147147

148-
@AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/1915")
148+
@AwaitsFix(bugUrl = "Supposedly fixed; https://github.com/elastic/x-pack-elasticsearch/issues/1915")
149149
public void testLoadExistingWatchesUponStartup() throws Exception {
150150
stopWatcher();
151151

@@ -226,7 +226,7 @@ public void testMixedTriggeredWatchLoading() throws Exception {
226226
assertSingleExecutionAndCompleteWatchHistory(numWatches, numRecords);
227227
}
228228

229-
@AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/3437")
229+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/29846")
230230
public void testTriggeredWatchLoading() throws Exception {
231231
createIndex("output");
232232
client().prepareIndex("my-index", "foo", "bar")

x-pack/qa/openldap-tests/src/test/java/org/elasticsearch/test/OpenLdapTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public void testCustomFilter() throws Exception {
161161
}
162162
}
163163

164-
@AwaitsFix(bugUrl = "https://github.com/elastic/x-plugins/issues/2849")
164+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/29758")
165165
public void testTcpTimeout() throws Exception {
166166
String groupSearchBase = "ou=people,dc=oldap,dc=test,dc=elasticsearch,dc=com";
167167
String userTemplate = "uid={0},ou=people,dc=oldap,dc=test,dc=elasticsearch,dc=com";

x-pack/qa/smoke-test-monitoring-with-watcher/src/test/java/org/elasticsearch/smoketest/MonitoringWithWatcherRestIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
import static org.hamcrest.Matchers.is;
3232

3333
@TestLogging("org.elasticsearch.client:TRACE,tracer:TRACE")
34-
@AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/2920")
34+
@AwaitsFix(bugUrl = "flaky tests")
3535
public class MonitoringWithWatcherRestIT extends ESRestTestCase {
3636

3737
@After

x-pack/qa/sql/src/main/java/org/elasticsearch/xpack/qa/sql/rest/RestSqlTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public void testNextPage() throws IOException {
121121
ContentType.APPLICATION_JSON)));
122122
}
123123

124-
@AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/2074")
124+
@AwaitsFix(bugUrl = "Unclear status, https://github.com/elastic/x-pack-elasticsearch/issues/2074")
125125
public void testTimeZone() throws IOException {
126126
String mode = randomMode();
127127
index("{\"test\":\"2017-07-27 00:00:00\"}",

x-pack/qa/third-party/active-directory/src/test/java/org/elasticsearch/xpack/security/authc/ldap/ActiveDirectorySessionFactoryTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ public void testStandardLdapConnection() throws Exception {
304304
}
305305

306306
@SuppressWarnings("unchecked")
307-
@AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/3369")
307+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/29840")
308308
public void testHandlingLdapReferralErrors() throws Exception {
309309
String groupSearchBase = "DC=ad,DC=test,DC=elasticsearch,DC=com";
310310
String userTemplate = "CN={0},CN=Users,DC=ad,DC=test,DC=elasticsearch,DC=com";

0 commit comments

Comments
 (0)