tests: remove useless studio fixture

This commit is contained in:
Lauréline Guérin 2020-12-14 12:00:12 +01:00
parent f7cf19cde0
commit 8ca3ac6eef
No known key found for this signature in database
GPG Key ID: 1FAB9B9B4F93D473
6 changed files with 22 additions and 28 deletions

View File

@ -635,7 +635,7 @@ def test_settings_disabled_screens(pub):
assert 'Theme' not in resp.text
def test_settings_export_import(pub, studio):
def test_settings_export_import(pub):
def wipe():
FormDef.wipe()
CardDef.wipe()
@ -1409,7 +1409,7 @@ def test_postgresql_settings(pub):
assert pub.cfg['postgresql']['port'] == 5432
def test_studio_home(pub, studio):
def test_studio_home(pub):
create_superuser(pub)
app = login(get_app(pub))
resp = app.get('/backoffice/')
@ -1434,7 +1434,7 @@ def test_studio_home(pub, studio):
assert 'studio' not in resp.text
def test_studio_workflows(pub, studio):
def test_studio_workflows(pub):
create_superuser(pub)
app = login(get_app(pub))
resp = app.get('/backoffice/workflows/')

View File

@ -43,7 +43,7 @@ def teardown_module(module):
clean_temporary_pub()
def test_cards_list(pub, studio):
def test_cards_list(pub):
create_superuser(pub)
CardDef.wipe()
@ -84,7 +84,7 @@ def test_cards_list(pub, studio):
assert '<h2>Bar</h2>' in resp.text
def test_cards_new(pub, studio):
def test_cards_new(pub):
CardDef.wipe()
create_superuser(pub)
app = login(get_app(pub))
@ -99,7 +99,7 @@ def test_cards_new(pub, studio):
assert CardDef.get(1).disabled is False
def test_cards_delete(pub, studio):
def test_cards_delete(pub):
CardDef.wipe()
carddef = CardDef()
carddef.name = 'card title'
@ -127,7 +127,7 @@ def test_cards_delete(pub, studio):
carddata.remove_self() # don't keep leftovers
def test_cards_duplicate(pub, studio):
def test_cards_duplicate(pub):
CardDef.wipe()
carddef = CardDef()
carddef.name = 'card title'
@ -141,7 +141,7 @@ def test_cards_duplicate(pub, studio):
assert CardDef.get(2).disabled is False
def test_card_workflow_change(pub, studio):
def test_card_workflow_change(pub):
Workflow.wipe()
workflow = Workflow(name='Workflow Two')
workflow.add_status('plop')
@ -179,7 +179,7 @@ def test_card_workflow_change(pub, studio):
resp = resp.form.submit('submit').follow()
def test_card_digest_template(pub, studio):
def test_card_digest_template(pub):
create_superuser(pub)
CardDef.wipe()
@ -239,7 +239,7 @@ def test_card_digest_template(pub, studio):
assert 'Existing cards will be updated in the background.' not in resp.text
def test_card_category(pub, studio):
def test_card_category(pub):
create_superuser(pub)
CardDef.wipe()
@ -278,7 +278,7 @@ def test_card_category(pub, studio):
assert '<span class="label">Category</span> <span class="value">Bar</span>' in resp.text
def test_card_user_support(pub, studio):
def test_card_user_support(pub):
create_superuser(pub)
CardDef.wipe()
@ -299,7 +299,7 @@ def test_card_user_support(pub, studio):
assert '<span class="label">User support</span> <span class="value">Optional</span>' in resp.text
def test_card_custom_view_data_source(pub, studio):
def test_card_custom_view_data_source(pub):
user = create_superuser(pub)
Role.wipe()
role = Role(name='foobar')

View File

@ -5591,7 +5591,7 @@ def test_backoffice_create_formdata_map_fields_by_varname(pub, create_formdata):
assert not pq('.wf-links')
def test_backoffice_create_carddata_from_formdata(pub, studio):
def test_backoffice_create_carddata_from_formdata(pub):
CardDef.wipe()
FormDef.wipe()

View File

@ -50,7 +50,7 @@ def teardown_module(module):
clean_temporary_pub()
def test_carddata_management(pub, studio):
def test_carddata_management(pub):
CardDef.wipe()
user = create_user(pub)
app = login(get_app(pub))
@ -124,7 +124,7 @@ def test_carddata_management(pub, studio):
assert resp.text.count('<tr') == 2 # header + row of data
def test_carddata_management_categories(pub, studio):
def test_carddata_management_categories(pub):
user = create_user(pub)
CardDef.wipe()
@ -169,7 +169,7 @@ def test_carddata_management_categories(pub, studio):
assert '<h3>Bar</h3>' in resp.text
def test_carddata_management_user_support(pub, studio):
def test_carddata_management_user_support(pub):
user = create_user(pub)
CardDef.wipe()
@ -198,7 +198,7 @@ def test_carddata_management_user_support(pub, studio):
assert 'user_id' in resp.form.fields
def test_studio_card_item_link(pub, studio):
def test_studio_card_item_link(pub):
user = create_user(pub)
CardDef.wipe()
carddef = CardDef()
@ -261,7 +261,7 @@ def test_studio_card_item_link(pub, studio):
resp.click('card plop')
def test_backoffice_cards_import_data_from_csv(pub, studio):
def test_backoffice_cards_import_data_from_csv(pub):
user = create_user(pub)
data_source = {
@ -377,7 +377,7 @@ def test_backoffice_cards_import_data_from_csv(pub, studio):
assert card2.data['5'].tm_mday == 3
def test_backoffice_cards_import_data_csv_user_support(pub, studio):
def test_backoffice_cards_import_data_csv_user_support(pub):
user = create_user(pub)
user.name_identifiers = [str(uuid.uuid4())]
user.store()
@ -478,7 +478,7 @@ def test_backoffice_cards_import_data_csv_invalid_columns(pub):
assert '(line numbers 4, 5, 7, 8, 9 and more)' in resp.text
def test_backoffice_cards_wscall_failure_display(http_requests, pub, studio):
def test_backoffice_cards_wscall_failure_display(http_requests, pub):
if not pub.is_using_postgresql():
pytest.skip('this requires SQL')
return
@ -543,7 +543,7 @@ def test_backoffice_cards_wscall_failure_display(http_requests, pub, studio):
assert pub.loggederror_class.select()[0].get_formdata().data == {'1': 'plop'}
def test_block_card_item_link(pub, studio, blocks_feature):
def test_block_card_item_link(pub, blocks_feature):
user = create_user(pub)
CardDef.wipe()
carddef = CardDef()

View File

@ -459,7 +459,7 @@ def test_backoffice_missing_custom_view(pub):
assert resp.location == 'http://example.net/backoffice/management/form-title/1/?plop'
def test_carddata_custom_view(pub, studio):
def test_carddata_custom_view(pub):
user = create_user(pub)
CardDef.wipe()

View File

@ -43,12 +43,6 @@ def welco_url(request, pub):
return site_options(request, pub, 'options', 'welco_url', 'http://welco.example.net')
@pytest.fixture
def studio(request, pub):
# studio enabled is now the default
return
@pytest.fixture
def blocks_feature(request, pub):
return site_options(request, pub, 'options', 'fields-blocks', 'true')