"""Constants to reuse in tests fixtures and factories.""" from payee.constants.constants import TAX_FORM_TYPES MOCK_TAX_FORM_DETAILS = { TAX_FORM_TYPES.W9: { 'tax_id_country': 'USA', 'tin_type': 'test tin type', 'tin': 'test tin', 'tax_name': 'test tax name', 'tax_classification': 'test classification', }, TAX_FORM_TYPES.W8BEN: { 'tax_id_country': 'USA', 'tin_type': 'test tin type', 'tin': 'test tin', 'tax_name': 'test tax name', 'tax_treaty_claim': True, }, TAX_FORM_TYPES.W8BENE: { 'tax_id_country': 'USA', 'tin_type': 'test tin type', 'tin': 'test tin', 'tax_name': 'test tax name', 'tax_treaty_claim': True, 'type_of_entity': 'test type of entity', 'lob': 'test lob', }, TAX_FORM_TYPES.W8IMY: { 'tax_id_country': 'USA', 'tin_type': 'test tin type', 'tin': 'test tin', 'tax_name': 'test tax name', 'tax_treaty_claim': True, 'type_of_entity': 'test type of entity', }, TAX_FORM_TYPES.W8ECI: { 'tax_id_country': 'USA', 'tin_type': 'test tin type', 'tin': 'test tin', 'tax_name': 'test tax name', 'tax_treaty_claim': True, 'type_of_entity': 'test type of entity', }, } MOCK_AUDIT_FIELDS = { 'modified_by_profile_id': 'modified_by_profile_id', 'modified_by_profile_type': 'modified_by_profile_type', 'modified_by_identity': 'modified_by_identity', 'modified_at': 'modified_at', }