Skip to content

Commit

Permalink
add test for previous fix for issue 446
Browse files Browse the repository at this point in the history
  • Loading branch information
EBoguslawski committed Sep 5, 2023
1 parent 4428ff4 commit ac503f1
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions grid2op/tests/test_issue_446.py
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()

0 comments on commit ac503f1

Please sign in to comment.