-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
152aff5
commit a5cb584
Showing
8 changed files
with
214 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
...t/java/io/servicetalk/concurrent/reactivestreams/tck/PublisherMergeDelayErrorTckTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* Copyright © 2023 Apple Inc. and the ServiceTalk project authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.servicetalk.concurrent.reactivestreams.tck; | ||
|
||
import io.servicetalk.concurrent.api.Publisher; | ||
|
||
import org.testng.annotations.Ignore; | ||
|
||
import static io.servicetalk.concurrent.api.Publisher.empty; | ||
|
||
public class PublisherMergeDelayErrorTckTest extends AbstractPublisherOperatorTckTest<Integer> { | ||
@Override | ||
protected Publisher<Integer> createServiceTalkPublisher(long elements) { | ||
int numElements = TckUtils.requestNToInt(elements); | ||
|
||
if (numElements <= 1) { | ||
return TckUtils.newPublisher(numElements).mergeDelayError(empty()); | ||
} | ||
|
||
int halfElements = numElements / 2; | ||
|
||
// Calculate the number of elements that will not be emitted by the first publisher so we create another | ||
// one in composePublisher(...) that will emit these. The sum of both should be == elements. | ||
return composePublisher(TckUtils.newPublisher(halfElements), numElements - halfElements); | ||
} | ||
|
||
@Override | ||
protected Publisher<Integer> composePublisher(final Publisher<Integer> publisher, final int elements) { | ||
return publisher.mergeDelayError(TckUtils.newPublisher(elements)); | ||
} | ||
|
||
@Ignore("merge operator proactively requests from upstream, and will not deliver errors until demand comes") | ||
@Override | ||
public void required_spec309_requestNegativeNumberMustSignalIllegalArgumentException() { | ||
} | ||
|
||
@Ignore("merge operator proactively requests from upstream, and will not deliver errors until demand comes") | ||
@Override | ||
public void required_spec309_requestZeroMustSignalIllegalArgumentException() { | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
...ms/src/test/java/io/servicetalk/concurrent/reactivestreams/tck/PublisherMergeTckTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Copyright © 2023 Apple Inc. and the ServiceTalk project authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package io.servicetalk.concurrent.reactivestreams.tck; | ||
|
||
import io.servicetalk.concurrent.api.Publisher; | ||
|
||
import org.testng.annotations.Ignore; | ||
|
||
import static io.servicetalk.concurrent.api.Publisher.empty; | ||
|
||
public class PublisherMergeTckTest extends AbstractPublisherOperatorTckTest<Integer> { | ||
@Override | ||
protected Publisher<Integer> createServiceTalkPublisher(long elements) { | ||
int numElements = TckUtils.requestNToInt(elements); | ||
|
||
if (numElements <= 1) { | ||
return TckUtils.newPublisher(numElements).merge(empty()); | ||
} | ||
|
||
int halfElements = numElements / 2; | ||
|
||
// Calculate the number of elements that will not be emitted by the first publisher so we create another | ||
// one in composePublisher(...) that will emit these. The sum of both should be == elements. | ||
return composePublisher(TckUtils.newPublisher(halfElements), numElements - halfElements); | ||
} | ||
|
||
@Override | ||
protected Publisher<Integer> composePublisher(final Publisher<Integer> publisher, final int elements) { | ||
return publisher.merge(TckUtils.newPublisher(elements)); | ||
} | ||
|
||
@Ignore("merge operator proactively requests from upstream, and will not deliver errors until demand comes") | ||
@Override | ||
public void required_spec309_requestNegativeNumberMustSignalIllegalArgumentException() { | ||
// merge operator proactively requests from upstream, and will not deliver errors until demand comes. | ||
} | ||
|
||
@Ignore("merge operator proactively requests from upstream, and will not deliver errors until demand comes") | ||
@Override | ||
public void required_spec309_requestZeroMustSignalIllegalArgumentException() { | ||
} | ||
} |
27 changes: 0 additions & 27 deletions
27
...java/io/servicetalk/concurrent/reactivestreams/tck/PublisherZipWithDelayErrorTckTest.java
This file was deleted.
Oops, something went wrong.
27 changes: 0 additions & 27 deletions
27
.../src/test/java/io/servicetalk/concurrent/reactivestreams/tck/PublisherZipWithTckTest.java
This file was deleted.
Oops, something went wrong.