1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
|
"""Unit tests for quicksight-supported APIs."""
import boto3
import pytest
from botocore.exceptions import ClientError
from moto import mock_aws
from moto.core import DEFAULT_ACCOUNT_ID as ACCOUNT_ID
# 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
@pytest.mark.parametrize(
"request_params",
[
{
"GroupName": "mygroup",
"Description": "my new fancy group",
},
{
"GroupName": "users@munich",
"Description": "all munich users",
},
],
)
@mock_aws
def test_create_group(request_params):
client = boto3.client("quicksight", region_name="us-west-2")
resp = client.create_group(
AwsAccountId=ACCOUNT_ID,
Namespace="default",
GroupName=request_params["GroupName"],
Description=request_params["Description"],
)
assert "Group" in resp
assert resp["Group"]["Arn"] == (
f"arn:aws:quicksight:us-west-2:{ACCOUNT_ID}:group/default/{request_params['GroupName']}"
)
assert resp["Group"]["GroupName"] == request_params["GroupName"]
assert resp["Group"]["Description"] == request_params["Description"]
assert resp["Group"]["PrincipalId"] == f"{ACCOUNT_ID}"
@pytest.mark.parametrize(
"request_params",
[
{
"GroupName": "mygroup",
"Description": "my new fancy group",
},
{
"GroupName": "users@munich",
"Description": "all munich users",
},
],
)
@mock_aws
def test_describe_group(request_params):
client = boto3.client("quicksight", region_name="us-west-2")
client.create_group(
AwsAccountId=ACCOUNT_ID,
Namespace="default",
GroupName=request_params["GroupName"],
Description=request_params["Description"],
)
resp = client.describe_group(
GroupName=request_params["GroupName"],
AwsAccountId=ACCOUNT_ID,
Namespace="default",
)
assert "Group" in resp
assert resp["Group"]["Arn"] == (
f"arn:aws:quicksight:us-west-2:{ACCOUNT_ID}:group/default/{request_params['GroupName']}"
)
assert resp["Group"]["GroupName"] == request_params["GroupName"]
assert resp["Group"]["Description"] == request_params["Description"]
assert resp["Group"]["PrincipalId"] == f"{ACCOUNT_ID}"
@pytest.mark.parametrize(
"request_params",
[
{
"GroupName": "mygroup",
"Description": "my new fancy group",
},
{
"GroupName": "users@munich",
"Description": "all munich users",
},
],
)
@mock_aws
def test_update_group(request_params):
client = boto3.client("quicksight", region_name="us-west-2")
client.create_group(
AwsAccountId=ACCOUNT_ID,
Namespace="default",
GroupName=request_params["GroupName"],
Description="desc1",
)
resp = client.update_group(
GroupName=request_params["GroupName"],
AwsAccountId=ACCOUNT_ID,
Namespace="default",
Description="desc2",
)
assert resp["Group"]["Description"] == "desc2"
resp = client.describe_group(
GroupName=request_params["GroupName"],
AwsAccountId=ACCOUNT_ID,
Namespace="default",
)
assert "Group" in resp
assert resp["Group"]["Arn"] == (
f"arn:aws:quicksight:us-west-2:{ACCOUNT_ID}:group/default/{request_params['GroupName']}"
)
assert resp["Group"]["GroupName"] == request_params["GroupName"]
assert resp["Group"]["Description"] == "desc2"
assert resp["Group"]["PrincipalId"] == f"{ACCOUNT_ID}"
@pytest.mark.parametrize(
"request_params",
[
{
"GroupName": "mygroup",
"Description": "my new fancy group",
},
{
"GroupName": "users@munich",
"Description": "all munich users",
},
],
)
@mock_aws
def test_delete_group(request_params):
client = boto3.client("quicksight", region_name="us-east-2")
client.create_group(
AwsAccountId=ACCOUNT_ID,
Namespace="default",
GroupName=request_params["GroupName"],
Description=request_params["Description"],
)
client.delete_group(
GroupName=request_params["GroupName"],
AwsAccountId=ACCOUNT_ID,
Namespace="default",
)
with pytest.raises(ClientError) as exc:
client.describe_group(
GroupName=request_params["GroupName"],
AwsAccountId=ACCOUNT_ID,
Namespace="default",
)
err = exc.value.response["Error"]
assert err["Code"] == "ResourceNotFoundException"
@mock_aws
def test_list_groups__initial():
client = boto3.client("quicksight", region_name="us-east-2")
resp = client.list_groups(AwsAccountId=ACCOUNT_ID, Namespace="default")
assert resp["GroupList"] == []
assert resp["Status"] == 200
@mock_aws
def test_list_groups():
client = boto3.client("quicksight", region_name="us-east-1")
for i in range(4):
group_name = f"group{i}" if i < 2 else f"group{i}@test"
client.create_group(
AwsAccountId=ACCOUNT_ID, Namespace="default", GroupName=group_name
)
resp = client.list_groups(AwsAccountId=ACCOUNT_ID, Namespace="default")
assert len(resp["GroupList"]) == 4
assert resp["Status"] == 200
assert {
"Arn": f"arn:aws:quicksight:us-east-1:{ACCOUNT_ID}:group/default/group0",
"GroupName": "group0",
"PrincipalId": ACCOUNT_ID,
} in resp["GroupList"]
assert {
"Arn": f"arn:aws:quicksight:us-east-1:{ACCOUNT_ID}:group/default/group3@test",
"GroupName": "group3@test",
"PrincipalId": ACCOUNT_ID,
} in resp["GroupList"]
@mock_aws
def test_list_groups__paginated():
client = boto3.client("quicksight", region_name="us-east-1")
for i in range(125):
client.create_group(
AwsAccountId=ACCOUNT_ID, Namespace="default", GroupName=f"group{i}"
)
# default pagesize is 100
page1 = client.list_groups(AwsAccountId=ACCOUNT_ID, Namespace="default")
assert len(page1["GroupList"]) == 100
assert "NextToken" in page1
# We can ask for a smaller pagesize
page2 = client.list_groups(
AwsAccountId=ACCOUNT_ID,
Namespace="default",
MaxResults=15,
NextToken=page1["NextToken"],
)
assert len(page2["GroupList"]) == 15
assert "NextToken" in page2
# We could request all of them in one go
all_users = client.list_groups(
AwsAccountId=ACCOUNT_ID,
Namespace="default",
MaxResults=1000,
)
length = len(all_users["GroupList"])
# We don't know exactly how much workspaces there are, because we are running multiple tests at the same time
assert length >= 125
@mock_aws
def test_search_groups():
client = boto3.client("quicksight", region_name="us-east-1")
for i in range(4):
group_name = f"group{i}" if i < 2 else f"test{i}@test"
client.create_group(
AwsAccountId=ACCOUNT_ID, Namespace="default", GroupName=group_name
)
resp = client.search_groups(
AwsAccountId=ACCOUNT_ID,
Namespace="default",
Filters=[
{"Operator": "StringEquals", "Name": "GROUP_NAME", "Value": "group1"},
],
)
assert len(resp["GroupList"]) == 1
assert resp["Status"] == 200
assert {
"Arn": f"arn:aws:quicksight:us-east-1:{ACCOUNT_ID}:group/default/group1",
"GroupName": "group1",
"PrincipalId": ACCOUNT_ID,
} in resp["GroupList"]
@mock_aws
def test_search_groups__paginated():
client = boto3.client("quicksight", region_name="us-east-1")
for i in range(250):
group_name = f"group{i}" if i % 2 else f"test{i}@test"
client.create_group(
AwsAccountId=ACCOUNT_ID, Namespace="default", GroupName=group_name
)
# default pagesize is 100
page1 = client.search_groups(
AwsAccountId=ACCOUNT_ID,
Namespace="default",
Filters=[
{"Operator": "StartsWith", "Name": "GROUP_NAME", "Value": "group"},
],
)
assert len(page1["GroupList"]) == 100
assert "NextToken" in page1
# We can ask for a smaller pagesize
page2 = client.search_groups(
AwsAccountId=ACCOUNT_ID,
Namespace="default",
Filters=[
{"Operator": "StartsWith", "Name": "GROUP_NAME", "Value": "group"},
],
MaxResults=15,
NextToken=page1["NextToken"],
)
assert len(page2["GroupList"]) == 15
assert "NextToken" in page2
# We could request all of them in one go
all_users = client.search_groups(
AwsAccountId=ACCOUNT_ID,
Namespace="default",
Filters=[
{"Operator": "StartsWith", "Name": "GROUP_NAME", "Value": "group"},
],
MaxResults=1000,
)
length = len(all_users["GroupList"])
# We don't know exactly how much workspaces there are, because we are running multiple tests at the same time
assert length >= 125
@mock_aws
def test_list_groups__diff_account_region():
ACCOUNT_ID_2 = "998877665544"
client_us = boto3.client("quicksight", region_name="us-east-2")
client_eu = boto3.client("quicksight", region_name="eu-west-1")
resp = client_us.create_group(
AwsAccountId=ACCOUNT_ID,
Namespace="default",
GroupName="group_us_1",
Description="Group in US Account 1",
)
resp = client_us.create_group(
AwsAccountId=ACCOUNT_ID_2,
Namespace="default",
GroupName="group_us_2",
Description="Group in US Account 2",
)
resp = client_eu.create_group(
AwsAccountId=ACCOUNT_ID,
Namespace="default",
GroupName="group_eu_1",
Description="Group in EU Account 1",
)
# Return Account 1, Region US
resp = client_us.list_groups(AwsAccountId=ACCOUNT_ID, Namespace="default")
assert len(resp["GroupList"]) == 1
assert resp["Status"] == 200
resp["GroupList"][0].pop("PrincipalId")
assert resp["GroupList"][0] == {
"Arn": f"arn:aws:quicksight:us-east-2:{ACCOUNT_ID}:group/default/group_us_1",
"GroupName": "group_us_1",
"Description": "Group in US Account 1",
}
# Return Account 2, Region US
resp = client_us.list_groups(AwsAccountId=ACCOUNT_ID_2, Namespace="default")
assert len(resp["GroupList"]) == 1
assert resp["Status"] == 200
resp["GroupList"][0].pop("PrincipalId")
assert resp["GroupList"][0] == {
"Arn": f"arn:aws:quicksight:us-east-2:{ACCOUNT_ID_2}:group/default/group_us_2",
"GroupName": "group_us_2",
"Description": "Group in US Account 2",
}
# Return Account 1, Region EU
resp = client_eu.list_groups(AwsAccountId=ACCOUNT_ID, Namespace="default")
assert len(resp["GroupList"]) == 1
assert resp["Status"] == 200
resp["GroupList"][0].pop("PrincipalId")
assert resp["GroupList"][0] == {
"Arn": f"arn:aws:quicksight:eu-west-1:{ACCOUNT_ID}:group/default/group_eu_1",
"GroupName": "group_eu_1",
"Description": "Group in EU Account 1",
}
@mock_aws
def test_search_groups__check_exceptions():
client = boto3.client("quicksight", region_name="us-east-1")
# Just do an exception test. No need to create a group first.
with pytest.raises(ClientError) as exc:
client.search_groups(
AwsAccountId=ACCOUNT_ID,
Namespace="default",
Filters=[
{
"Operator": "StringEquals",
"Name": "GROUP_DESCRIPTION",
"Value": "My Group 1",
},
],
)
err = exc.value.response["Error"]
assert err["Code"] == "ValidationException"
|