-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ECS - LongARN is enabled by default (#4762)
- Loading branch information
Showing
6 changed files
with
125 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import os | ||
import mock | ||
import pytest | ||
import sure # noqa # pylint: disable=unused-import | ||
|
||
from moto import settings | ||
|
||
|
||
""" | ||
Sanity checks for interpretation of the MOTO_ECS_NEW_ARN-variable | ||
""" | ||
|
||
|
||
def test_default_is_true(): | ||
settings.ecs_new_arn_format().should.equal(True) | ||
|
||
|
||
@pytest.mark.parametrize("value", ["TrUe", "true", "invalid", "0", "1"]) | ||
def test_anything_but_false_is_true(value): | ||
with mock.patch.dict(os.environ, {"MOTO_ECS_NEW_ARN": value}): | ||
settings.ecs_new_arn_format().should.equal(True) | ||
|
||
|
||
@pytest.mark.parametrize("value", ["False", "false", "faLse"]) | ||
def test_only_false_is_false(value): | ||
with mock.patch.dict(os.environ, {"MOTO_ECS_NEW_ARN": value}): | ||
settings.ecs_new_arn_format().should.equal(False) |
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
Oops, something went wrong.