2020-05-03 23:13:40 +00:00
|
|
|
import boto3
|
2021-05-13 09:36:56 +00:00
|
|
|
import pytest
|
2021-10-18 19:44:29 +00:00
|
|
|
import sure # noqa # pylint: disable=unused-import
|
2020-05-03 23:13:40 +00:00
|
|
|
|
2021-05-13 09:36:56 +00:00
|
|
|
from botocore.exceptions import ClientError
|
2020-05-03 23:13:40 +00:00
|
|
|
from moto import mock_managedblockchain
|
2020-05-13 11:28:22 +00:00
|
|
|
from . import helpers
|
2020-05-07 02:12:48 +00:00
|
|
|
|
|
|
|
|
2020-05-03 23:13:40 +00:00
|
|
|
@mock_managedblockchain
|
|
|
|
def test_create_network():
|
|
|
|
conn = boto3.client("managedblockchain", region_name="us-east-1")
|
|
|
|
|
2020-05-07 02:12:48 +00:00
|
|
|
response = conn.create_network(
|
|
|
|
Name="testnetwork1",
|
|
|
|
Framework="HYPERLEDGER_FABRIC",
|
|
|
|
FrameworkVersion="1.2",
|
2020-05-13 11:28:22 +00:00
|
|
|
FrameworkConfiguration=helpers.default_frameworkconfiguration,
|
|
|
|
VotingPolicy=helpers.default_votingpolicy,
|
|
|
|
MemberConfiguration=helpers.default_memberconfiguration,
|
2020-05-07 02:12:48 +00:00
|
|
|
)
|
2020-05-13 11:28:22 +00:00
|
|
|
network_id = response["NetworkId"]
|
|
|
|
member_id = response["MemberId"]
|
|
|
|
network_id.should.match("n-[A-Z0-9]{26}")
|
|
|
|
member_id.should.match("m-[A-Z0-9]{26}")
|
2020-05-03 23:13:40 +00:00
|
|
|
|
2020-05-07 02:12:48 +00:00
|
|
|
# Find in full list
|
|
|
|
response = conn.list_networks()
|
|
|
|
mbcnetworks = response["Networks"]
|
|
|
|
mbcnetworks.should.have.length_of(1)
|
|
|
|
mbcnetworks[0]["Name"].should.equal("testnetwork1")
|
|
|
|
|
|
|
|
# Get network details
|
|
|
|
response = conn.get_network(NetworkId=network_id)
|
|
|
|
response["Network"]["Name"].should.equal("testnetwork1")
|
2020-05-03 23:13:40 +00:00
|
|
|
|
|
|
|
|
2020-05-07 02:12:48 +00:00
|
|
|
@mock_managedblockchain
|
|
|
|
def test_create_network_withopts():
|
|
|
|
conn = boto3.client("managedblockchain", region_name="us-east-1")
|
|
|
|
|
|
|
|
response = conn.create_network(
|
2020-05-03 23:13:40 +00:00
|
|
|
Name="testnetwork1",
|
|
|
|
Description="Test Network 1",
|
|
|
|
Framework="HYPERLEDGER_FABRIC",
|
|
|
|
FrameworkVersion="1.2",
|
2020-05-13 11:28:22 +00:00
|
|
|
FrameworkConfiguration=helpers.default_frameworkconfiguration,
|
|
|
|
VotingPolicy=helpers.default_votingpolicy,
|
|
|
|
MemberConfiguration=helpers.default_memberconfiguration,
|
2020-05-03 23:13:40 +00:00
|
|
|
)
|
2020-05-13 11:28:22 +00:00
|
|
|
network_id = response["NetworkId"]
|
|
|
|
member_id = response["MemberId"]
|
|
|
|
network_id.should.match("n-[A-Z0-9]{26}")
|
|
|
|
member_id.should.match("m-[A-Z0-9]{26}")
|
2020-05-03 23:13:40 +00:00
|
|
|
|
|
|
|
# Find in full list
|
|
|
|
response = conn.list_networks()
|
|
|
|
mbcnetworks = response["Networks"]
|
|
|
|
mbcnetworks.should.have.length_of(1)
|
2020-05-07 02:12:48 +00:00
|
|
|
mbcnetworks[0]["Description"].should.equal("Test Network 1")
|
2020-05-03 23:13:40 +00:00
|
|
|
|
|
|
|
# Get network details
|
|
|
|
response = conn.get_network(NetworkId=network_id)
|
2020-05-07 02:12:48 +00:00
|
|
|
response["Network"]["Description"].should.equal("Test Network 1")
|
|
|
|
|
|
|
|
|
|
|
|
@mock_managedblockchain
|
|
|
|
def test_create_network_noframework():
|
|
|
|
conn = boto3.client("managedblockchain", region_name="us-east-1")
|
|
|
|
|
2021-05-13 09:36:56 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
conn.create_network(
|
|
|
|
Name="testnetwork1",
|
|
|
|
Description="Test Network 1",
|
|
|
|
Framework="HYPERLEDGER_VINYL",
|
|
|
|
FrameworkVersion="1.2",
|
|
|
|
FrameworkConfiguration=helpers.default_frameworkconfiguration,
|
|
|
|
VotingPolicy=helpers.default_votingpolicy,
|
|
|
|
MemberConfiguration=helpers.default_memberconfiguration,
|
|
|
|
)
|
|
|
|
err = ex.value.response["Error"]
|
|
|
|
err["Code"].should.equal("BadRequestException")
|
|
|
|
err["Message"].should.contain("Invalid request body")
|
2020-05-07 02:12:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_managedblockchain
|
|
|
|
def test_create_network_badframeworkver():
|
|
|
|
conn = boto3.client("managedblockchain", region_name="us-east-1")
|
|
|
|
|
2021-05-13 09:36:56 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
conn.create_network(
|
|
|
|
Name="testnetwork1",
|
|
|
|
Description="Test Network 1",
|
|
|
|
Framework="HYPERLEDGER_FABRIC",
|
|
|
|
FrameworkVersion="1.X",
|
|
|
|
FrameworkConfiguration=helpers.default_frameworkconfiguration,
|
|
|
|
VotingPolicy=helpers.default_votingpolicy,
|
|
|
|
MemberConfiguration=helpers.default_memberconfiguration,
|
|
|
|
)
|
|
|
|
err = ex.value.response["Error"]
|
|
|
|
err["Code"].should.equal("BadRequestException")
|
|
|
|
err["Message"].should.contain(
|
|
|
|
"Invalid version 1.X requested for framework HYPERLEDGER_FABRIC"
|
2020-05-07 02:12:48 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@mock_managedblockchain
|
|
|
|
def test_create_network_badedition():
|
|
|
|
conn = boto3.client("managedblockchain", region_name="us-east-1")
|
|
|
|
|
|
|
|
frameworkconfiguration = {"Fabric": {"Edition": "SUPER"}}
|
|
|
|
|
2021-05-13 09:36:56 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
conn.create_network(
|
|
|
|
Name="testnetwork1",
|
|
|
|
Description="Test Network 1",
|
|
|
|
Framework="HYPERLEDGER_FABRIC",
|
|
|
|
FrameworkVersion="1.2",
|
|
|
|
FrameworkConfiguration=frameworkconfiguration,
|
|
|
|
VotingPolicy=helpers.default_votingpolicy,
|
|
|
|
MemberConfiguration=helpers.default_memberconfiguration,
|
|
|
|
)
|
|
|
|
err = ex.value.response["Error"]
|
|
|
|
err["Code"].should.equal("BadRequestException")
|
|
|
|
err["Message"].should.contain("Invalid request body")
|
2020-05-07 02:54:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
@mock_managedblockchain
|
|
|
|
def test_get_network_badnetwork():
|
|
|
|
conn = boto3.client("managedblockchain", region_name="us-east-1")
|
|
|
|
|
2021-05-13 09:36:56 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
conn.get_network(NetworkId="n-ABCDEFGHIJKLMNOP0123456789")
|
|
|
|
err = ex.value.response["Error"]
|
|
|
|
err["Code"].should.equal("ResourceNotFoundException")
|
|
|
|
err["Message"].should.contain("Network n-ABCDEFGHIJKLMNOP0123456789 not found")
|