Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable tests because react-netty aggregate random order of response … #7770

Merged
merged 2 commits into from
Jan 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -726,6 +726,7 @@ public void listRevisionsAcceptDateTime() {
.verifyComplete();
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of revisions, we can list the revisions ConfigurationSettings using pagination
* (ie. where 'nextLink' has a URL pointing to the next page of results.)
Expand All @@ -751,6 +752,7 @@ public void listRevisionsWithPagination() {
.verifyComplete();
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of revisions, we can list the revisions ConfigurationSettings using pagination and stream is invoked multiple times.
* (ie. where 'nextLink' has a URL pointing to the next page of results.)
Expand Down Expand Up @@ -781,6 +783,7 @@ public void listRevisionsWithPaginationAndRepeatStream() {
assertEquals(numberExpected, configurationSettingList2.size());
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of revisions, we can list the revisions ConfigurationSettings using pagination and stream is invoked multiple times.
* (ie. where 'nextLink' has a URL pointing to the next page of results.)
Expand Down Expand Up @@ -810,6 +813,8 @@ public void listRevisionsWithPaginationAndRepeatIterator() {
configurationSettingPagedFlux.toIterable().forEach(configurationSetting -> configurationSettingList2.add(configurationSetting));
assertEquals(numberExpected, configurationSettingList2.size());
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of existing settings, we can list the ConfigurationSettings using pagination
* (ie. where 'nextLink' has a URL pointing to the next page of results.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,7 @@ public void listRevisionsAcceptDateTime() {
assertConfigurationEquals(original, revisions.get(1));
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of revisions, we can list the revisions ConfigurationSettings using pagination
* (ie. where 'nextLink' has a URL pointing to the next page of results.)
Expand All @@ -558,6 +559,7 @@ public void listRevisionsWithPagination() {
assertEquals(numberExpected, client.listRevisions(filter).stream().collect(Collectors.toList()).size());
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of revisions, we can process {@link java.util.stream.Stream} multiple time and get same result.
* (ie. where 'nextLink' has a URL pointing to the next page of results.)
Expand All @@ -576,6 +578,7 @@ public void listRevisionsWithPaginationAndRepeatStream() {
assertEquals(numberExpected, configurationSettingPagedIterable.stream().collect(Collectors.toList()).size());
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of revisions, we can iterate over multiple time and get same result.
* (ie. where 'nextLink' has a URL pointing to the next page of results.)
Expand All @@ -602,6 +605,7 @@ public void listRevisionsWithPaginationAndRepeatIterator() {
equalsArray(configurationSettingList1, configurationSettingList2);
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of existing settings, we can list the ConfigurationSettings using pagination
* (ie. where 'nextLink' has a URL pointing to the next page of results.)
Expand Down