Skip to content

Commit

Permalink
Merge pull request #230 from ewjoachim/restrict-iterable-str
Browse files Browse the repository at this point in the history
  • Loading branch information
ewjoachim committed Nov 3, 2023
2 parents 859ddd3 + d3eb162 commit d80da1e
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 9 deletions.
27 changes: 21 additions & 6 deletions pypitoken/restrictions.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,11 +371,16 @@ def check(self, context: Context) -> None:
@classmethod
def from_parameters(
cls,
project_names: list[str] | None = None,
project_names: Iterable[str] | None = None,
**kwargs,
) -> ProjectNamesRestriction | None:
if project_names is not None:
return cls(project_names=project_names)
if isinstance(project_names, str):
raise exceptions.InvalidRestriction(
"project_names should be an iterable of strings. "
"Received a single string not wrapped in an iterable."
)
return cls(project_names=list(project_names))
return None


Expand Down Expand Up @@ -435,11 +440,16 @@ def check(self, context: Context) -> None:
@classmethod
def from_parameters(
cls,
project_ids: list[str] | None = None,
project_ids: Iterable[str] | None = None,
**kwargs,
) -> ProjectIDsRestriction | None:
if project_ids is not None:
return cls(project_ids=project_ids)
if isinstance(project_ids, str):
raise exceptions.InvalidRestriction(
"project_ids should be an iterable of strings. "
"Received a single string not wrapped in an iterable."
)
return cls(project_ids=list(project_ids))
return None


Expand Down Expand Up @@ -598,11 +608,16 @@ def check(self, context: Context) -> None:
@classmethod
def from_parameters(
cls,
legacy_project_names: list[str] | None = None,
legacy_project_names: Iterable[str] | None = None,
**kwargs,
) -> LegacyProjectNamesRestriction | None:
if legacy_project_names is not None:
return cls(project_names=legacy_project_names)
if isinstance(legacy_project_names, str):
raise exceptions.InvalidRestriction(
"legacy_project_names should be an iterable of strings. "
"Received a single string not wrapped in an iterable."
)
return cls(project_names=list(legacy_project_names))
return None


Expand Down
7 changes: 4 additions & 3 deletions pypitoken/token.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import datetime
import functools
from typing import Iterable

import pymacaroons
from typing_extensions import ParamSpec
Expand Down Expand Up @@ -152,11 +153,11 @@ def restrict(
self,
not_before: int | datetime.datetime | None = None,
not_after: int | datetime.datetime | None = None,
project_names: list[str] | None = None,
project_ids: list[str] | None = None,
project_names: Iterable[str] | None = None,
project_ids: Iterable[str] | None = None,
user_id: str | None = None,
# Legacy params
legacy_project_names: list[str] | None = None,
legacy_project_names: Iterable[str] | None = None,
legacy_not_before: int | datetime.datetime | None = None,
legacy_not_after: int | datetime.datetime | None = None,
legacy_noop: bool | None = None,
Expand Down
19 changes: 19 additions & 0 deletions tests/test_restrictions.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,13 @@ def test__LegacyProjectNamesRestriction__from_parameters__not_empty():
) == restrictions.LegacyProjectNamesRestriction(project_names=["a", "b"])


def test__LegacyProjectNamesRestriction__from_parameters__bare_string():
with pytest.raises(exceptions.InvalidRestriction):
restrictions.LegacyProjectNamesRestriction.from_parameters(
legacy_project_names="a"
)


def test__LegacyDateRestriction__load_value__pass():
assert restrictions.LegacyDateRestriction._load_value(
value={"nbf": 1_234_567_890, "exp": 1_234_567_900}
Expand Down Expand Up @@ -546,6 +553,11 @@ def test__ProjectNamesRestriction__from_parameters__empty():
assert restrictions.ProjectNamesRestriction.from_parameters() is None


def test__ProjectNamesRestriction__from_parameters__bare_string():
with pytest.raises(exceptions.InvalidRestriction):
restrictions.ProjectNamesRestriction.from_parameters(project_names="a")


def test__ProjectNamesRestriction__from_parameters__not_empty():
assert restrictions.ProjectNamesRestriction.from_parameters(
project_names=["a", "b"]
Expand Down Expand Up @@ -669,6 +681,13 @@ def test__ProjectIDsRestriction__from_parameters__empty():
assert restrictions.ProjectIDsRestriction.from_parameters() is None


def test__ProjectIDsRestriction__from_parameters__bare_string():
with pytest.raises(exceptions.InvalidRestriction):
restrictions.ProjectIDsRestriction.from_parameters(
project_ids="00000000-0000-0000-0000-000000000000"
)


def test__ProjectIDsRestriction__from_parameters__not_empty():
assert restrictions.ProjectIDsRestriction.from_parameters(
project_ids=[
Expand Down

0 comments on commit d80da1e

Please sign in to comment.