2022-06-28 13:40:49 +00:00
|
|
|
"""Unit tests for ce-supported APIs."""
|
|
|
|
import boto3
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
from botocore.exceptions import ClientError
|
|
|
|
from moto import mock_ce
|
2022-08-13 09:49:43 +00:00
|
|
|
from moto.core import DEFAULT_ACCOUNT_ID as ACCOUNT_ID
|
2022-06-28 13:40:49 +00:00
|
|
|
|
|
|
|
# See our Development Tips on writing tests for hints on how to write good tests:
|
|
|
|
# http://docs.getmoto.org/en/latest/docs/contributing/development_tips/tests.html
|
|
|
|
|
|
|
|
|
|
|
|
@mock_ce
|
|
|
|
def test_create_cost_category_definition():
|
|
|
|
client = boto3.client("ce", region_name="ap-southeast-1")
|
|
|
|
resp = client.create_cost_category_definition(
|
|
|
|
Name="ccd",
|
|
|
|
RuleVersion="CostCategoryExpression.v1",
|
|
|
|
Rules=[
|
|
|
|
{"Value": "v", "Rule": {"CostCategories": {"Key": "k", "Values": ["v"]}}}
|
|
|
|
],
|
|
|
|
)
|
2023-06-29 09:11:56 +00:00
|
|
|
assert resp["CostCategoryArn"].startswith(f"arn:aws:ce::{ACCOUNT_ID}:costcategory/")
|
|
|
|
assert "EffectiveStart" in resp
|
2023-02-25 20:24:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ce
|
|
|
|
def test_create_cost_category_definition_with_effective_start():
|
|
|
|
client = boto3.client("ce", region_name="ap-southeast-1")
|
|
|
|
resp = client.create_cost_category_definition(
|
|
|
|
Name="ccd",
|
|
|
|
RuleVersion="CostCategoryExpression.v1",
|
|
|
|
Rules=[
|
|
|
|
{"Value": "v", "Rule": {"CostCategories": {"Key": "k", "Values": ["v"]}}}
|
|
|
|
],
|
|
|
|
EffectiveStart="2022-11-01T00:00:00Z",
|
|
|
|
)
|
2023-06-29 09:11:56 +00:00
|
|
|
assert resp["CostCategoryArn"].startswith(f"arn:aws:ce::{ACCOUNT_ID}:costcategory/")
|
|
|
|
assert resp["EffectiveStart"] == "2022-11-01T00:00:00Z"
|
2022-06-28 13:40:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ce
|
|
|
|
def test_describe_cost_category_definition():
|
|
|
|
client = boto3.client("ce", region_name="us-east-2")
|
|
|
|
ccd_arn = client.create_cost_category_definition(
|
|
|
|
Name="ccd",
|
|
|
|
RuleVersion="CostCategoryExpression.v1",
|
|
|
|
Rules=[
|
|
|
|
{"Value": "v", "Rule": {"CostCategories": {"Key": "k", "Values": ["v"]}}}
|
|
|
|
],
|
|
|
|
)["CostCategoryArn"]
|
|
|
|
|
|
|
|
resp = client.describe_cost_category_definition(CostCategoryArn=ccd_arn)[
|
|
|
|
"CostCategory"
|
|
|
|
]
|
2023-06-29 09:11:56 +00:00
|
|
|
assert resp["Name"] == "ccd"
|
|
|
|
assert resp["CostCategoryArn"] == ccd_arn
|
|
|
|
assert resp["RuleVersion"] == "CostCategoryExpression.v1"
|
|
|
|
assert len(resp["Rules"]) == 1
|
|
|
|
assert resp["Rules"][0] == {
|
|
|
|
"Value": "v",
|
|
|
|
"Rule": {"CostCategories": {"Key": "k", "Values": ["v"]}},
|
|
|
|
}
|
2022-06-28 13:40:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ce
|
|
|
|
def test_delete_cost_category_definition():
|
|
|
|
client = boto3.client("ce", region_name="ap-southeast-1")
|
|
|
|
ccd_arn = client.create_cost_category_definition(
|
|
|
|
Name="ccd",
|
|
|
|
RuleVersion="CostCategoryExpression.v1",
|
|
|
|
Rules=[
|
|
|
|
{"Value": "v", "Rule": {"CostCategories": {"Key": "k", "Values": ["v"]}}}
|
|
|
|
],
|
|
|
|
)["CostCategoryArn"]
|
|
|
|
ccd_id = ccd_arn.split("/")[-1]
|
|
|
|
|
|
|
|
client.delete_cost_category_definition(CostCategoryArn=ccd_arn)
|
|
|
|
|
|
|
|
with pytest.raises(ClientError) as exc:
|
|
|
|
client.describe_cost_category_definition(CostCategoryArn=ccd_arn)
|
|
|
|
err = exc.value.response["Error"]
|
2023-06-29 09:11:56 +00:00
|
|
|
assert err["Code"] == "ResourceNotFoundException"
|
|
|
|
assert err["Message"] == f"No Cost Categories found with ID {ccd_id}"
|
2022-06-28 13:40:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_ce
|
|
|
|
def test_update_cost_category_definition():
|
|
|
|
client = boto3.client("ce", region_name="us-east-2")
|
|
|
|
ccd_arn = client.create_cost_category_definition(
|
|
|
|
Name="ccd",
|
|
|
|
RuleVersion="CostCategoryExpression.v1",
|
|
|
|
Rules=[
|
|
|
|
{"Value": "v", "Rule": {"CostCategories": {"Key": "k", "Values": ["v"]}}}
|
|
|
|
],
|
|
|
|
)["CostCategoryArn"]
|
|
|
|
|
|
|
|
client.update_cost_category_definition(
|
|
|
|
CostCategoryArn=ccd_arn,
|
|
|
|
RuleVersion="CostCategoryExpression.v1",
|
|
|
|
Rules=[
|
|
|
|
{"Value": "v", "Rule": {"CostCategories": {"Key": "k", "Values": ["v"]}}}
|
|
|
|
],
|
|
|
|
SplitChargeRules=[{"Source": "s", "Targets": ["t1"], "Method": "EVEN"}],
|
|
|
|
)
|
|
|
|
|
|
|
|
resp = client.describe_cost_category_definition(CostCategoryArn=ccd_arn)[
|
|
|
|
"CostCategory"
|
|
|
|
]
|
2023-06-29 09:11:56 +00:00
|
|
|
assert resp["Name"] == "ccd"
|
|
|
|
assert resp["CostCategoryArn"] == ccd_arn
|
|
|
|
assert resp["RuleVersion"] == "CostCategoryExpression.v1"
|
|
|
|
|
|
|
|
assert len(resp["Rules"]) == 1
|
|
|
|
assert resp["Rules"][0] == {
|
|
|
|
"Value": "v",
|
|
|
|
"Rule": {"CostCategories": {"Key": "k", "Values": ["v"]}},
|
|
|
|
}
|
|
|
|
|
|
|
|
assert len(resp["SplitChargeRules"]) == 1
|
|
|
|
assert resp["SplitChargeRules"][0] == {
|
|
|
|
"Source": "s",
|
|
|
|
"Targets": ["t1"],
|
|
|
|
"Method": "EVEN",
|
|
|
|
}
|