Esempio n. 1
0
def test_state_proof_returned_for_get_claim_def(looper, trustAnchor,
                                                trustAnchorWallet, client1,
                                                wallet1):
    """
    Tests that state proof is returned in the reply for GET_CLAIM_DEF
    transactions.
    Use different submitter and reader!
    """
    dest = trustAnchorWallet.defaultId
    data = {"primary": {'N': '123'}, REVOCATION: {'h0': '456'}}
    claim_def_operation = {
        TXN_TYPE: CLAIM_DEF,
        REF: 12,
        DATA: data,
        SIGNATURE_TYPE: 'CL'
    }
    submit_operation_and_get_replies(looper, trustAnchorWallet, trustAnchor,
                                     claim_def_operation)
    get_claim_def_operation = {
        ORIGIN: dest,
        TXN_TYPE: GET_CLAIM_DEF,
        REF: 12,
        SIGNATURE_TYPE: 'CL'
    }
    replies = submit_operation_and_get_replies(looper, wallet1, client1,
                                               get_claim_def_operation)
    expected_data = data
    for reply in replies:
        result = reply['result']
        assert DATA in result
        data = result.get(DATA)
        assert data
        assert data == expected_data
        assert result[TXN_TIME]
        check_valid_proof(reply, client1)
Esempio n. 2
0
def test_state_proof_returned_for_get_nym(looper, trustAnchor,
                                          trustAnchorWallet, userWalletA,
                                          client1, wallet1):
    """
    Tests that state proof is returned in the reply for GET_NYM transactions.
    Use different submitter and reader!
    """
    dest = userWalletA.defaultId

    nym_operation = {TARGET_NYM: dest, TXN_TYPE: NYM}

    submit_operation_and_get_replies(looper, trustAnchorWallet, trustAnchor,
                                     nym_operation)

    get_nym_operation = {TARGET_NYM: dest, TXN_TYPE: GET_NYM}

    replies = submit_operation_and_get_replies(looper, wallet1, client1,
                                               get_nym_operation)
    for reply in replies:
        result = reply['result']
        assert DATA in result
        assert result[DATA]
        data = domain_state_serializer.deserialize(result[DATA])
        assert ROLE in data
        assert VERKEY in data
        assert f.IDENTIFIER.nm in data
        assert result[TXN_TIME]
        check_valid_proof(reply, client1)
def test_state_proof_returned_for_missing_schema(looper,
                                                 trustAnchor,
                                                 trustAnchorWallet):
    """
    Tests that state proof is returned in the reply for GET_SCHEMA transactions
    """
    client = trustAnchor
    dest = trustAnchorWallet.defaultId
    schema_name = "test_schema"
    schema_version = "1.0"
    get_schema_operation = {
        TARGET_NYM: dest,
        TXN_TYPE: GET_SCHEMA,
        DATA: {
            NAME: schema_name,
            VERSION: schema_version,
        }
    }
    replies = submit_operation_and_get_replies(looper, trustAnchorWallet,
                                               trustAnchor,
                                               get_schema_operation)
    for reply in replies:
        result = reply[f.RESULT.nm]
        assert ATTR_NAMES not in result[DATA]
        check_valid_proof(reply, client)
def test_state_proof_returned_for_get_attr(looper,
                                           addedRawAttribute,
                                           attributeName,
                                           attributeData,
                                           client1, wallet1):
    """
    Tests that state proof is returned in the reply for GET_ATTR transactions.
    Use different submitter and reader!
    """
    get_attr_operation = {
        TARGET_NYM: addedRawAttribute.dest,
        TXN_TYPE: GET_ATTR,
        RAW: attributeName
    }
    replies = submit_operation_and_get_replies(looper,
                                               wallet1, client1,
                                               get_attr_operation)
    expected_data = attrib_raw_data_serializer.deserialize(attributeData)
    for reply in replies:
        result = reply['result']
        assert DATA in result
        data = attrib_raw_data_serializer.deserialize(result[DATA])
        assert data == expected_data
        assert result[TXN_TIME]
        check_valid_proof(reply, client1)
def test_state_proof_returned_for_get_schema(looper,
                                             trustAnchor,
                                             trustAnchorWallet,
                                             client1, wallet1):
    """
    Tests that state proof is returned in the reply for GET_SCHEMA transactions.
    Use different submitter and reader!
    """
    dest = trustAnchorWallet.defaultId
    schema_name = "test_schema"
    schema_version = "1.0"
    schema_attr_names = ["width", "height"]
    data = {
        NAME: schema_name,
        VERSION: schema_version,
        ATTR_NAMES: schema_attr_names
    }
    schema_operation = {
        TXN_TYPE: SCHEMA,
        DATA: data
    }
    submit_operation_and_get_replies(looper,
                                     trustAnchorWallet, trustAnchor,
                                     schema_operation)

    get_schema_operation = {
        TARGET_NYM: dest,
        TXN_TYPE: GET_SCHEMA,
        DATA: {
            NAME: schema_name,
            VERSION: schema_version,
        }
    }
    replies = submit_operation_and_get_replies(looper,
                                               wallet1, client1,
                                               get_schema_operation)
    for reply in replies:
        result = reply['result']
        assert DATA in result
        data = result.get(DATA)
        assert data
        assert ATTR_NAMES in data
        assert data[ATTR_NAMES] == schema_attr_names
        assert NAME in data
        assert VERSION in data
        assert result[TXN_TIME]
        check_valid_proof(reply, client1)
Esempio n. 6
0
def test_state_proof_returned_for_get_schema(looper, trustAnchor,
                                             trustAnchorWallet, client1,
                                             wallet1):
    """
    Tests that state proof is returned in the reply for GET_SCHEMA transactions.
    Use different submitter and reader!
    """
    dest = trustAnchorWallet.defaultId
    schema_name = "test_schema"
    schema_version = "1.0"
    schema_attr_names = ["width", "height"]
    data = {
        NAME: schema_name,
        VERSION: schema_version,
        ATTR_NAMES: schema_attr_names
    }
    schema_operation = {TXN_TYPE: SCHEMA, DATA: data}
    submit_operation_and_get_replies(looper, trustAnchorWallet, trustAnchor,
                                     schema_operation)

    get_schema_operation = {
        TARGET_NYM: dest,
        TXN_TYPE: GET_SCHEMA,
        DATA: {
            NAME: schema_name,
            VERSION: schema_version,
        }
    }
    replies = submit_operation_and_get_replies(looper, wallet1, client1,
                                               get_schema_operation)
    for reply in replies:
        result = reply['result']
        assert DATA in result
        data = result.get(DATA)
        assert data
        assert ATTR_NAMES in data
        assert data[ATTR_NAMES] == schema_attr_names
        assert NAME in data
        assert VERSION in data
        assert result[TXN_TIME]
        check_valid_proof(reply, client1)
def test_state_proof_returned_for_get_nym(looper,
                                          trustAnchor,
                                          trustAnchorWallet,
                                          userWalletA,
                                          client1, wallet1):
    """
    Tests that state proof is returned in the reply for GET_NYM transactions.
    Use different submitter and reader!
    """
    dest = userWalletA.defaultId

    nym_operation = {
        TARGET_NYM: dest,
        TXN_TYPE: NYM
    }

    submit_operation_and_get_replies(looper,
                                     trustAnchorWallet, trustAnchor,
                                     nym_operation)

    get_nym_operation = {
        TARGET_NYM: dest,
        TXN_TYPE: GET_NYM
    }

    replies = submit_operation_and_get_replies(looper,
                                               wallet1, client1,
                                               get_nym_operation)
    for reply in replies:
        result = reply['result']
        assert DATA in result
        assert result[DATA]
        data = domain_state_serializer.deserialize(result[DATA])
        assert ROLE in data
        assert VERKEY in data
        assert f.IDENTIFIER.nm in data
        assert result[TXN_TIME]
        check_valid_proof(reply, client1)
def test_state_proof_returned_for_get_claim_def(looper,
                                                trustAnchor,
                                                trustAnchorWallet,
                                                client1, wallet1):
    """
    Tests that state proof is returned in the reply for GET_CLAIM_DEF
    transactions.
    Use different submitter and reader!
    """
    dest = trustAnchorWallet.defaultId
    data = {"primary": {'N': '123'}, REVOCATION: {'h0': '456'}}
    claim_def_operation = {
        TXN_TYPE: CLAIM_DEF,
        REF: 12,
        DATA: data,
        SIGNATURE_TYPE: 'CL'
    }
    submit_operation_and_get_replies(looper,
                                     trustAnchorWallet, trustAnchor,
                                     claim_def_operation)
    get_claim_def_operation = {
        ORIGIN: dest,
        TXN_TYPE: GET_CLAIM_DEF,
        REF: 12,
        SIGNATURE_TYPE: 'CL'
    }
    replies = submit_operation_and_get_replies(looper,
                                               wallet1, client1,
                                               get_claim_def_operation)
    expected_data = data
    for reply in replies:
        result = reply['result']
        assert DATA in result
        data = result.get(DATA)
        assert data
        assert data == expected_data
        assert result[TXN_TIME]
        check_valid_proof(reply, client1)
def test_state_proof_returned_for_missing_attr(looper, attributeName,
                                               trustAnchor, trustAnchorWallet):
    """
    Tests that state proof is returned in the reply for GET_ATTR transactions
    """
    client = trustAnchor
    get_attr_operation = {
        TARGET_NYM: trustAnchorWallet.defaultId,
        TXN_TYPE: GET_ATTR,
        RAW: attributeName
    }
    replies = submit_operation_and_get_replies(looper, trustAnchorWallet,
                                               trustAnchor, get_attr_operation)
    check_no_data_and_valid_proof(client, replies)
def test_state_proof_returned_for_missing_nym(looper, trustAnchor,
                                              trustAnchorWallet, userWalletA):
    """
    Tests that state proof is returned in the reply for GET_NYM transactions
    """
    client = trustAnchor
    # Make not existing id
    dest = userWalletA.defaultId
    dest = dest[:-3]
    dest += "fff"

    get_nym_operation = {TARGET_NYM: dest, TXN_TYPE: GET_NYM}

    replies = submit_operation_and_get_replies(looper, trustAnchorWallet,
                                               trustAnchor, get_nym_operation)
    check_no_data_and_valid_proof(client, replies)
def test_state_proof_returned_for_missing_attr(looper,
                                               attributeName,
                                               trustAnchor,
                                               trustAnchorWallet):
    """
    Tests that state proof is returned in the reply for GET_ATTR transactions
    """
    client = trustAnchor
    get_attr_operation = {
        TARGET_NYM: trustAnchorWallet.defaultId,
        TXN_TYPE: GET_ATTR,
        RAW: attributeName
    }
    replies = submit_operation_and_get_replies(looper, trustAnchorWallet,
                                               trustAnchor, get_attr_operation)
    check_no_data_and_valid_proof(client, replies)
def test_state_proof_returned_for_missing_claim_def(looper, trustAnchor,
                                                    trustAnchorWallet):
    """
    Tests that state proof is returned in the reply for GET_CLAIM_DEF transactions
    """
    client = trustAnchor
    dest = trustAnchorWallet.defaultId
    get_claim_def_operation = {
        ORIGIN: dest,
        TXN_TYPE: GET_CLAIM_DEF,
        REF: 12,
        SIGNATURE_TYPE: 'CL'
    }
    replies = submit_operation_and_get_replies(looper, trustAnchorWallet,
                                               trustAnchor,
                                               get_claim_def_operation)
    check_no_data_and_valid_proof(client, replies)
def test_state_proof_returned_for_missing_claim_def(looper,
                                                    trustAnchor,
                                                    trustAnchorWallet):
    """
    Tests that state proof is returned in the reply for GET_CLAIM_DEF
    transactions
    """
    client = trustAnchor
    dest = trustAnchorWallet.defaultId
    get_claim_def_operation = {
        ORIGIN: dest,
        TXN_TYPE: GET_CLAIM_DEF,
        REF: 12,
        SIGNATURE_TYPE: 'CL'
    }
    replies = submit_operation_and_get_replies(looper, trustAnchorWallet,
                                               trustAnchor,
                                               get_claim_def_operation)
    check_no_data_and_valid_proof(client, replies)
Esempio n. 14
0
def test_state_proof_returned_for_get_attr(looper, addedRawAttribute,
                                           attributeName, trustAnchor,
                                           trustAnchorWallet):
    """
    Tests that client could send get-requests to only one node instead of n
    """
    client = trustAnchor
    client = make_client_send_requests_to_only_one_node(client)

    # Prepare and send get-request
    get_attr_operation = {
        TARGET_NYM: addedRawAttribute.dest,
        TXN_TYPE: GET_ATTR,
        RAW: attributeName
    }
    # Get reply and verify that the only one received
    replies = submit_operation_and_get_replies(looper, trustAnchorWallet,
                                               client, get_attr_operation)

    assert len(replies) == 1
def test_state_proof_returned_for_missing_nym(looper,
                                              trustAnchor,
                                              trustAnchorWallet,
                                              userWalletA):
    """
    Tests that state proof is returned in the reply for GET_NYM transactions
    """
    client = trustAnchor
    # Make not existing id
    dest = userWalletA.defaultId
    dest = dest[:-3]
    dest += "fff"

    get_nym_operation = {
        TARGET_NYM: dest,
        TXN_TYPE: GET_NYM
    }

    replies = submit_operation_and_get_replies(looper, trustAnchorWallet,
                                               trustAnchor, get_nym_operation)
    check_no_data_and_valid_proof(client, replies)
Esempio n. 16
0
def test_state_proof_returned_for_get_attr(looper, addedRawAttribute,
                                           attributeName, attributeData,
                                           client1, wallet1):
    """
    Tests that state proof is returned in the reply for GET_ATTR transactions.
    Use different submitter and reader!
    """
    get_attr_operation = {
        TARGET_NYM: addedRawAttribute.dest,
        TXN_TYPE: GET_ATTR,
        RAW: attributeName
    }
    replies = submit_operation_and_get_replies(looper, wallet1, client1,
                                               get_attr_operation)
    expected_data = attrib_raw_data_serializer.deserialize(attributeData)
    for reply in replies:
        result = reply['result']
        assert DATA in result
        data = attrib_raw_data_serializer.deserialize(result[DATA])
        assert data == expected_data
        assert result[TXN_TIME]
        check_valid_proof(reply, client1)
Esempio n. 17
0
def test_state_proof_returned_for_get_attr(looper,
                                           addedRawAttribute,
                                           attributeName,
                                           trustAnchor,
                                           trustAnchorWallet):
    """
    Tests that client could send get-requests to only one node instead of n
    """
    client = trustAnchor
    client = make_client_send_requests_to_only_one_node(client)

    # Prepare and send get-request
    get_attr_operation = {
        TARGET_NYM: addedRawAttribute.dest,
        TXN_TYPE: GET_ATTR,
        RAW: attributeName
    }
    # Get reply and verify that the only one received
    replies = submit_operation_and_get_replies(looper, trustAnchorWallet,
                                               client,
                                               get_attr_operation)

    assert len(replies) == 1
def test_state_proof_returned_for_missing_schema(looper, trustAnchor,
                                                 trustAnchorWallet):
    """
    Tests that state proof is returned in the reply for GET_SCHEMA transactions
    """
    client = trustAnchor
    dest = trustAnchorWallet.defaultId
    schema_name = "test_schema"
    schema_version = "1.0"
    get_schema_operation = {
        TARGET_NYM: dest,
        TXN_TYPE: GET_SCHEMA,
        DATA: {
            NAME: schema_name,
            VERSION: schema_version,
        }
    }
    replies = submit_operation_and_get_replies(looper, trustAnchorWallet,
                                               trustAnchor,
                                               get_schema_operation)
    for reply in replies:
        result = reply[f.RESULT.nm]
        assert ATTR_NAMES not in result[DATA]
        check_valid_proof(reply, client)