-
Notifications
You must be signed in to change notification settings - Fork 12
Fix empty dispatching delivery #1353
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
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
1b0023d
Cleanup code.
yuri-sergiichuk 2f23d56
Extend `ContextAwareTest` over building up our own BBC logic
yuri-sergiichuk b801533
Define a test `Thermometer` entries.
yuri-sergiichuk 3f4246d
Define test validated aggregates.
yuri-sergiichuk 62037fc
Fix the copyright alignment.
yuri-sergiichuk 6a56ab0
Drop duplicate aggregate.
yuri-sergiichuk 846d370
Create test cases for issue #1352.
yuri-sergiichuk 1998f5e
Add helpers to identify if there are events or commands produced by t…
yuri-sergiichuk 7d8584e
Cleanup.
yuri-sergiichuk de0bd1e
Fixes #1352. Do not try to apply events if there are no produced.
yuri-sergiichuk 348af22
Store Protobuf code style configs.
yuri-sergiichuk bc3b105
Bump version.
yuri-sergiichuk a1d8725
Fix the aggregate doc.
yuri-sergiichuk 0383a6b
Improve docs.
yuri-sergiichuk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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
75 changes: 75 additions & 0 deletions
75
server/src/test/java/io/spine/server/aggregate/given/thermometer/SafeThermometer.java
This file contains hidden or 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,75 @@ | ||
/* | ||
* Copyright 2021, TeamDev. All rights reserved. | ||
* | ||
* 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 | ||
* | ||
* Redistribution and use in source and/or binary forms, with or without | ||
* modification, must retain the above copyright notice and the following | ||
* disclaimer. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
package io.spine.server.aggregate.given.thermometer; | ||
|
||
import io.spine.core.External; | ||
import io.spine.server.aggregate.Aggregate; | ||
import io.spine.server.aggregate.Apply; | ||
import io.spine.server.aggregate.given.thermometer.event.TemperatureChanged; | ||
import io.spine.server.aggregate.given.thermometer.event.TermTemperatureChanged; | ||
import io.spine.server.event.React; | ||
|
||
import java.util.Optional; | ||
|
||
/** | ||
* Ignores temperature changes outside its own range. | ||
*/ | ||
public final class SafeThermometer extends Aggregate<ThermometerId, Thermometer, Thermometer.Builder> { | ||
|
||
private static final double MIN = 0; | ||
private static final double MAX = 120; | ||
|
||
@React | ||
Optional<TermTemperatureChanged> on(@External TemperatureChanged e) { | ||
double temperature = e.getFahrenheit(); | ||
if (!withinBounds(temperature)) { | ||
return Optional.empty(); | ||
} | ||
return Optional.of( | ||
TermTemperatureChanged | ||
.newBuilder() | ||
.setThermometer(id()) | ||
.setChange( | ||
TemperatureChange | ||
.newBuilder() | ||
.setNewValue(temperature) | ||
.setPreviousValue(state().getFahrenheit()) | ||
) | ||
.vBuild() | ||
); | ||
} | ||
|
||
private static boolean withinBounds(double temperature) { | ||
return temperature > MIN && temperature < MAX; | ||
} | ||
|
||
@Apply | ||
private void on(TermTemperatureChanged e) { | ||
builder().setFahrenheit(e.getChange() | ||
.getNewValue()); | ||
} | ||
} |
53 changes: 53 additions & 0 deletions
53
server/src/test/java/io/spine/server/aggregate/given/thermometer/SafeThermometerRepo.java
This file contains hidden or 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,53 @@ | ||
/* | ||
* Copyright 2021, TeamDev. All rights reserved. | ||
* | ||
* 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 | ||
* | ||
* Redistribution and use in source and/or binary forms, with or without | ||
* modification, must retain the above copyright notice and the following | ||
* disclaimer. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
package io.spine.server.aggregate.given.thermometer; | ||
|
||
import io.spine.server.aggregate.AggregateRepository; | ||
import io.spine.server.aggregate.given.thermometer.event.TemperatureChanged; | ||
import io.spine.server.route.EventRouting; | ||
|
||
import static io.spine.util.Preconditions2.checkNotDefaultArg; | ||
|
||
/** | ||
* A {@link SafeThermometer thermometer} repository. | ||
*/ | ||
public final class SafeThermometerRepo extends AggregateRepository<ThermometerId, SafeThermometer> { | ||
|
||
private final ThermometerId thermometer; | ||
|
||
/** | ||
* Creates a new repository for the {@code thermometer}. | ||
*/ | ||
public SafeThermometerRepo(ThermometerId thermometer) { | ||
this.thermometer = checkNotDefaultArg(thermometer); | ||
} | ||
|
||
@Override | ||
protected void setupEventRouting(EventRouting<ThermometerId> routing) { | ||
routing.unicast(TemperatureChanged.class, (e) -> thermometer); | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Грядущими морозами навеяло? ;)