-
Notifications
You must be signed in to change notification settings - Fork 1
Upgrade to powsybl-dependencies v2025.0.1 #115
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 4 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
6d2e836
Upgrade to powsybl-dependencies v2025.0.0
d64659e
implement area and battery short circuit and adapt to network store u…
EtienneLt bf1bb58
Merge branch 'main' into upgrade_to_powsybl_dependencies_2025.0.0
Mathieu-Deharbe 7a34ed3
add sql migration
EtienneLt ef5399e
review
EtienneLt ef5a622
fix sql migration
EtienneLt c57bbb6
fix test
EtienneLt 6b7102b
Pom maj
f51cbcd
refactor
EtienneLt 8b2098e
fix comparator
EtienneLt 94bef49
Merge branch 'main' into upgrade_to_powsybl_dependencies_2025.0.0
EstherDarkish 0735c35
review
EtienneLt 9a3d68e
Code improvement: use constants
antoinebhs 7748fcd
review
EtienneLt afbcbd1
fix
EtienneLt 6d309f2
fix
EtienneLt 2d43961
add more test
EtienneLt 2403c01
fix
EtienneLt 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
60 changes: 60 additions & 0 deletions
60
network-store-iidm-tck/src/test/java/com/powsybl/network/store/tck/AreaIt.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,60 @@ | ||
/** | ||
* Copyright (c) 2025, RTE (http://www.rte-france.com) | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
*/ | ||
package com.powsybl.network.store.tck; | ||
|
||
import com.powsybl.iidm.network.tck.AbstractAreaTest; | ||
import com.powsybl.network.store.server.NetworkStoreApplication; | ||
import org.springframework.boot.test.context.SpringBootTest; | ||
import org.springframework.test.context.ContextConfiguration; | ||
import org.springframework.test.context.ContextHierarchy; | ||
|
||
/** | ||
* @author Etienne Lesot <etienne.lesot at rte-france.com> | ||
*/ | ||
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT, properties = {"spring.config.location=classpath:application.yaml"}) | ||
@ContextHierarchy({@ContextConfiguration(classes = {NetworkStoreApplication.class})}) | ||
public class AreaIt extends AbstractAreaTest { | ||
@Override | ||
public void mergeAndFlatten() { | ||
// merge is not implemented | ||
} | ||
|
||
@Override | ||
public void throwAddVoltageLevelOtherNetwork() { | ||
// problem | ||
} | ||
|
||
@Override | ||
public void removeArea() { | ||
EtienneLt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// removed equipments is managed differently in powsybl core implementation | ||
} | ||
|
||
@Override | ||
public void throwRemovedVoltageLevel() { | ||
// removed equipments is managed differently in powsybl core implementation | ||
EtienneLt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
@Override | ||
public void testGetAreaBoundary() { | ||
EtienneLt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// problem with removal | ||
} | ||
|
||
@Override | ||
public void testSetterGetterInMultiVariants() { | ||
EtienneLt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// problem with removal | ||
} | ||
|
||
@Override | ||
public void throwBoundaryOtherNetwork() { | ||
// creation of subnetwork needed | ||
} | ||
|
||
@Override | ||
public void removeEquipmentRemovesAreaBoundaryMergeAndDetach() { | ||
// merge is not implemented | ||
} | ||
} |
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.