• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

localstack / localstack / 22709357475

05 Mar 2026 08:35AM UTC coverage: 59.732% (-27.2%) from 86.974%
22709357475

Pull #13880

github

web-flow
Merge 28fcab93c into 710618057
Pull Request #13880: Firehose: Replace TaggingService

12 of 12 new or added lines in 2 files covered. (100.0%)

20464 existing lines in 510 files now uncovered.

45290 of 75822 relevant lines covered (59.73%)

0.6 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

72.22
/localstack-core/localstack/services/s3/exceptions.py
1
from localstack.aws.api import CommonServiceException
1✔
2

3

4
class MalformedXML(CommonServiceException):
1✔
5
    def __init__(self, message=None):
1✔
6
        if not message:
1✔
7
            message = "The XML you provided was not well-formed or did not validate against our published schema"
1✔
8
        super().__init__("MalformedXML", status_code=400, message=message)
1✔
9

10

11
class MalformedACLError(CommonServiceException):
1✔
12
    def __init__(self, message=None):
1✔
UNCOV
13
        super().__init__("MalformedACLError", status_code=400, message=message)
×
14

15

16
class InvalidRequest(CommonServiceException):
1✔
17
    def __init__(self, message=None):
1✔
UNCOV
18
        super().__init__("InvalidRequest", status_code=400, message=message)
×
19

20

21
class UnexpectedContent(CommonServiceException):
1✔
22
    def __init__(self, message=None):
1✔
UNCOV
23
        super().__init__("UnexpectedContent", status_code=400, message=message)
×
24

25

26
class NoSuchConfiguration(CommonServiceException):
1✔
27
    def __init__(self, message=None):
1✔
UNCOV
28
        super().__init__("NoSuchConfiguration", status_code=404, message=message)
×
29

30

31
class InvalidBucketState(CommonServiceException):
1✔
32
    def __init__(self, message=None):
1✔
UNCOV
33
        super().__init__("InvalidBucketState", status_code=409, message=message)
×
34

35

36
class NoSuchObjectLockConfiguration(CommonServiceException):
1✔
37
    def __init__(self, message=None):
1✔
UNCOV
38
        super().__init__("NoSuchObjectLockConfiguration", status_code=404, message=message)
×
39

40

41
class MalformedPolicy(CommonServiceException):
1✔
42
    def __init__(self, message=None):
1✔
UNCOV
43
        super().__init__("MalformedPolicy", status_code=400, message=message)
×
44

45

46
class InvalidBucketOwnerAWSAccountID(CommonServiceException):
1✔
47
    def __init__(self, message=None) -> None:
1✔
UNCOV
48
        super().__init__("InvalidBucketOwnerAWSAccountID", status_code=400, message=message)
×
49

50

51
class TooManyConfigurations(CommonServiceException):
1✔
52
    def __init__(self, message=None) -> None:
1✔
53
        super().__init__("TooManyConfigurations", status_code=400, message=message)
×
54

55

56
class IllegalLocationConstraintException(CommonServiceException):
1✔
57
    def __init__(self, location_constraint: str):
1✔
UNCOV
58
        super().__init__(
×
59
            "IllegalLocationConstraintException",
60
            status_code=400,
61
            message=f"The {location_constraint} location constraint is incompatible for the region specific endpoint this request was sent to.",
62
        )
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc