-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add test for previous fix for issue 446
- Loading branch information
1 parent
4428ff4
commit ac503f1
Showing
1 changed file
with
40 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Copyright (c) 2023, RTE (https://www.rte-france.com) | ||
# See AUTHORS.txt | ||
# This Source Code Form is subject to the terms of the Mozilla Public License, version 2.0. | ||
# If a copy of the Mozilla Public License, version 2.0 was not distributed with this file, | ||
# you can obtain one at http://mozilla.org/MPL/2.0/. | ||
# SPDX-License-Identifier: MPL-2.0 | ||
# This file is part of Grid2Op, Grid2Op a testbed platform to model sequential decision making in power systems. | ||
|
||
|
||
import grid2op | ||
from grid2op.gym_compat import BoxGymActSpace, BoxGymObsSpace | ||
import numpy as np | ||
import unittest | ||
|
||
|
||
class Issue446Tester(unittest.TestCase): | ||
def test_box_action_space(self): | ||
# We considers only redispatching actions | ||
env = grid2op.make("l2rpn_case14_sandbox", test=True) | ||
|
||
divide = {"hour_of_day": np.ones(1)} | ||
|
||
gym_observation_space_1 = BoxGymObsSpace(env.observation_space, | ||
attr_to_keep=["curtailment_mw", "hour_of_day"], | ||
divide = divide | ||
) | ||
|
||
gym_observation_space_2 = BoxGymObsSpace(env.observation_space.copy(), | ||
attr_to_keep=["curtailment_mw", "hour_of_day"], | ||
divide = divide | ||
) | ||
|
||
gym_observation_space_1.normalize_attr("curtailment_mw") | ||
|
||
assert "curtailment_mw" in gym_observation_space_1._divide | ||
assert "curtailment_mw" not in gym_observation_space_2._divide | ||
|
||
|
||
if __name__ == "__main__": | ||
unittest.main() |