Exemplo n.º 1
0
def test_delete_500(fs, get_sync_config_env, mocked_responses):
    get_sync_config_env['Configuration']['A2'] = 'asdf#PRD-276-377-545-0001#MKP-123'
    get_sync_config_env['Configuration']['G2'] = 'MKP-123'
    get_sync_config_env['Configuration']['D2'] = 'delete'
    get_sync_config_env.save(f'{fs.root_path}/test.xlsx')

    synchronizer = ConfigurationValuesSynchronizer(
        client=ConnectClient(
            use_specs=False,
            api_key='ApiKey SU:123',
            endpoint='https://localhost/public/v1',
        ),
        silent=True,
    )

    mocked_responses.add(
        method='POST',
        url='https://localhost/public/v1/products/PRD-276-377-545/configurations',
        status=500,
    )

    synchronizer.open(f'{fs.root_path}/test.xlsx', 'Configuration')

    skipped, created, updated, deleted, errors = synchronizer.sync()

    assert skipped == 0
    assert created == 0
    assert updated == 0
    assert deleted == 0
    assert errors == {2: ['500 Internal Server Error']}
Exemplo n.º 2
0
def test_skipped(get_sync_config_env):

    synchronizer = ConfigurationValuesSynchronizer(
        client=ConnectClient(
            use_specs=False,
            api_key='ApiKey SU:123',
            endpoint='https://localhost/public/v1',
        ),
        silent=True,
    )

    synchronizer.open('./tests/fixtures/configuration_sync.xlsx', 'Configuration')

    skipped, created, updated, deleted, errors = synchronizer.sync()

    assert skipped == 1
    assert created == 0
    assert updated == 0
    assert deleted == 0
    assert errors == {}
Exemplo n.º 3
0
def test_delete(fs, get_sync_config_env, mocked_responses):
    get_sync_config_env['Configuration']['A2'] = 'asdf#PRD-276-377-545-0001#MKP-123'
    get_sync_config_env['Configuration']['G2'] = 'MKP-123'
    get_sync_config_env['Configuration']['D2'] = 'delete'
    get_sync_config_env.save(f'{fs.root_path}/test.xlsx')

    stats = SynchronizerStats()
    synchronizer = ConfigurationValuesSynchronizer(
        client=ConnectClient(
            use_specs=False,
            api_key='ApiKey SU:123',
            endpoint='https://localhost/public/v1',
        ),
        silent=True,
        stats=stats,
    )

    mocked_responses.add(
        method='POST',
        url='https://localhost/public/v1/products/PRD-276-377-545/configurations',
        json={
            "ok": "ok",
        },
    )

    synchronizer.open(f'{fs.root_path}/test.xlsx', 'Configuration')
    synchronizer.sync()

    assert stats['Configuration'].get_counts_as_dict() == {
        'processed': 1, 'created': 0, 'updated': 0,
        'deleted': 1, 'skipped': 0, 'errors': 0,
    }
Exemplo n.º 4
0
def test_validate_invalid_scope_marketplace(fs, get_sync_config_env):
    get_sync_config_env['Configuration']['A2'] = 'asdf#PRD-276-377-545-0001#MKP-123'
    get_sync_config_env['Configuration']['D2'] = 'update'
    get_sync_config_env['Configuration']['G2'] = 'a'
    get_sync_config_env.save(f'{fs.root_path}/test.xlsx')

    stats = SynchronizerStats()
    synchronizer = ConfigurationValuesSynchronizer(
        client=ConnectClient(
            use_specs=False,
            api_key='ApiKey SU:123',
            endpoint='https://localhost/public/v1',
        ),
        silent=True,
        stats=stats,
    )

    synchronizer.open(f'{fs.root_path}/test.xlsx', 'Configuration')
    synchronizer.sync()

    assert stats['Configuration'].get_counts_as_dict() == {
        'processed': 1, 'created': 0, 'updated': 0,
        'deleted': 0, 'skipped': 0, 'errors': 1,
    }
    assert stats['Configuration']._row_errors == {2: ['Marketplace does not match configuration ID']}
Exemplo n.º 5
0
def test_validate_invalid_action(fs, get_sync_config_env):
    get_sync_config_env['Configuration']['D2'] = 'rocket'
    get_sync_config_env['Configuration']['I2'] = None
    get_sync_config_env.save(f'{fs.root_path}/test.xlsx')

    stats = SynchronizerStats()
    synchronizer = ConfigurationValuesSynchronizer(
        client=ConnectClient(
            use_specs=False,
            api_key='ApiKey SU:123',
            endpoint='https://localhost/public/v1',
        ),
        silent=True,
        stats=stats,
    )

    synchronizer.open(f'{fs.root_path}/test.xlsx', 'Configuration')
    synchronizer.sync()

    assert stats['Configuration'].get_counts_as_dict() == {
        'processed': 1, 'created': 0, 'updated': 0,
        'deleted': 0, 'skipped': 0, 'errors': 1,
    }
    assert stats['Configuration']._row_errors == {
        2: ['Action can be either `-` or `update`, provided rocket'],
    }
Exemplo n.º 6
0
def test_validate_wrong_id_format2(fs, get_sync_config_env):
    get_sync_config_env['Configuration']['A2'] = 'test## !'
    get_sync_config_env['Configuration']['D2'] = 'update'
    get_sync_config_env.save(f'{fs.root_path}/test.xlsx')

    synchronizer = ConfigurationValuesSynchronizer(
        client=ConnectClient(
            use_specs=False,
            api_key='ApiKey SU:123',
            endpoint='https://localhost/public/v1',
        ),
        silent=True,
    )

    synchronizer.open(f'{fs.root_path}/test.xlsx', 'Configuration')

    skipped, created, updated, deleted, errors = synchronizer.sync()

    assert skipped == 0
    assert created == 0
    assert updated == 0
    assert deleted == 0
    assert errors == {2: ['ID is not properly formatted']}
Exemplo n.º 7
0
def test_validate_invalid_scope_item(fs, get_sync_config_env):
    get_sync_config_env['Configuration']['D2'] = 'update'
    get_sync_config_env['Configuration']['E2'] = 'a'
    get_sync_config_env.save(f'{fs.root_path}/test.xlsx')

    synchronizer = ConfigurationValuesSynchronizer(
        client=ConnectClient(
            use_specs=False,
            api_key='ApiKey SU:123',
            endpoint='https://localhost/public/v1',
        ),
        silent=True,
    )

    synchronizer.open(f'{fs.root_path}/test.xlsx', 'Configuration')

    skipped, created, updated, deleted, errors = synchronizer.sync()

    assert skipped == 0
    assert created == 0
    assert updated == 0
    assert deleted == 0
    assert errors == {2: ['Item does not match configuration ID']}
Exemplo n.º 8
0
def test_validate_invalid_action(fs, get_sync_config_env):
    get_sync_config_env['Configuration']['D2'] = 'rocket'
    get_sync_config_env['Configuration']['I2'] = None
    get_sync_config_env.save(f'{fs.root_path}/test.xlsx')

    synchronizer = ConfigurationValuesSynchronizer(
        client=ConnectClient(
            use_specs=False,
            api_key='ApiKey SU:123',
            endpoint='https://localhost/public/v1',
        ),
        silent=True,
    )

    synchronizer.open(f'{fs.root_path}/test.xlsx', 'Configuration')

    skipped, created, updated, deleted, errors = synchronizer.sync()

    assert skipped == 0
    assert created == 0
    assert updated == 0
    assert deleted == 0
    assert errors == {2: ['Action can be either `-` or `update`, provided rocket']}
Exemplo n.º 9
0
def test_validate_update_no_value(fs, get_sync_config_env):
    get_sync_config_env['Configuration']['D2'] = 'update'
    get_sync_config_env['Configuration']['I2'] = None
    get_sync_config_env.save(f'{fs.root_path}/test.xlsx')

    synchronizer = ConfigurationValuesSynchronizer(
        client=ConnectClient(
            use_specs=False,
            api_key='ApiKey SU:123',
            endpoint='https://localhost/public/v1',
        ),
        silent=True,
    )

    synchronizer.open(f'{fs.root_path}/test.xlsx', 'Configuration')

    skipped, created, updated, deleted, errors = synchronizer.sync()

    assert skipped == 0
    assert created == 0
    assert updated == 0
    assert deleted == 0
    assert errors == {2: ['Value is required for update operation']}
Exemplo n.º 10
0
def test_skipped(get_sync_config_env):

    stats = SynchronizerStats()
    synchronizer = ConfigurationValuesSynchronizer(
        client=ConnectClient(
            use_specs=False,
            api_key='ApiKey SU:123',
            endpoint='https://localhost/public/v1',
        ),
        silent=True,
        stats=stats,
    )

    synchronizer.open('./tests/fixtures/configuration_sync.xlsx', 'Configuration')
    synchronizer.sync()

    assert stats['Configuration'].get_counts_as_dict() == {
        'processed': 1, 'created': 0, 'updated': 0,
        'deleted': 0, 'skipped': 1, 'errors': 0,
    }
Exemplo n.º 11
0
def test_validate_wrong_id_format2(fs, get_sync_config_env):
    get_sync_config_env['Configuration']['A2'] = 'test## !'
    get_sync_config_env['Configuration']['D2'] = 'update'
    get_sync_config_env.save(f'{fs.root_path}/test.xlsx')

    stats = SynchronizerStats()
    synchronizer = ConfigurationValuesSynchronizer(
        client=ConnectClient(
            use_specs=False,
            api_key='ApiKey SU:123',
            endpoint='https://localhost/public/v1',
        ),
        silent=True,
        stats=stats,
    )

    synchronizer.open(f'{fs.root_path}/test.xlsx', 'Configuration')
    synchronizer.sync()

    assert stats['Configuration'].get_counts_as_dict() == {
        'processed': 1, 'created': 0, 'updated': 0,
        'deleted': 0, 'skipped': 0, 'errors': 1,
    }
    assert stats['Configuration']._row_errors == {2: ['ID is not properly formatted']}