Skip to content
This repository has been archived by the owner on Jun 8, 2023. It is now read-only.

Commit

Permalink
added tests for memcache instance
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettPowell committed Apr 1, 2021
1 parent 035e22e commit 380e629
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
15 changes: 13 additions & 2 deletions tests/test_resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
from rpe.resources.gcp import GcpComputeFirewall
from rpe.resources.gcp import GcpComputeSubnetwork
from rpe.resources.gcp import GcpDataflowJob
from rpe.resources.gcp import GcpRedisInstance
from rpe.resources.gcp import GcpMemorystoreRedis
from rpe.resources.gcp import GcpMemcacheInstance

test_project = "my_project"
test_resource_name = "my_resource"
Expand Down Expand Up @@ -251,10 +252,20 @@
'location': 'us-central1',
'project_id': test_project
},
cls=GcpRedisInstance,
cls=GcpMemorystoreRedis,
resource_type='redis.googleapis.com/Instance',
name='//redis.googleapis.com/projects/my_project/locations/us-central1/instances/my_resource'
),
ResourceTestCase(
resource_data={
'name': test_resource_name,
'location': 'us-central1',
'project_id': test_project
},
cls=GcpMemcacheInstance,
resource_type='memcache.googleapis.com/Instance',
name='//memcache.googleapis.com/projects/my_project/locations/us-central1/instances/my_resource'
),
]


Expand Down
12 changes: 10 additions & 2 deletions tests/test_resources_cai.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
from rpe.resources.gcp import GcpIamServiceAccount
from rpe.resources.gcp import GcpIamServiceAccountKey
from rpe.resources.gcp import GcpDataflowJob
from rpe.resources.gcp import GcpRedisInstance
from rpe.resources.gcp import GcpMemorystoreRedis
from rpe.resources.gcp import GcpMemcacheInstance

client_kwargs = {
'credentials': Credentials(token='')
Expand Down Expand Up @@ -218,7 +219,14 @@
"name": "//redis.googleapis.com/projects/test-project/locations/us-central1/instances/test-resource",
"asset_type": "redis.googleapis.com/Instance",
},
resource_cls=GcpRedisInstance
resource_cls=GcpMemorystoreRedis
),
CaiTestCase(
data={
"name": "//memcache.googleapis.com/projects/test-project/locations/us-central1/instances/test-resource",
"asset_type": "memcache.googleapis.com/Instance",
},
resource_cls=GcpMemcacheInstance
),
]

Expand Down

0 comments on commit 380e629

Please sign in to comment.