2

如何使用 Django 测试 client.post 测试具有 ModelChoiceField 的表单?传给post方法的数据字典应该怎么写?我正在做的方式根本没有选择任何价值。

我有一个包含以下字段的表单:

country = forms.ModelChoiceField(
        label="País",
        queryset=Country.objects.all().order_by('name'),
        required=True,
        widget=forms.Select(attrs={
            'onchange': "Dajaxice.party.update_country(Dajax.process, {'option':this.value})"
            },
        )

我还有以下测试用例:

def test_party_profile_sucessfully_saved(self):
    self.client.login(username='Party1', password='BadMotherF')
    response = self.client.post(reverse('party'), data={'slx_legal_type': '1', 'city':  'Belo Horizonte', 'country': '32',
                                        'mobile': '+55-31-55555555', 'name':    'Roberto Vasconcelos Novaes',
                                        'phone': '+55-31-55555555', 'slx_cnpj': '', 'slx_cpf': '056846515',
                                        'slx_ie': '', 'slx_im': '', 'slx_rg': 'MG9084545', 'street':
                                        'Rua Palmira, 656 - 502', 'streetbis': 'Serra', 'subdivision': '520',
                                        'zip': '30220110'},
                               follow=True)
    self.assertContains(response, 'Succesfully Saved!')

这种形式可以正常工作。但是当我使用上述测试用例对其进行测试时,没有选择作为模型选择字段(国家)数据传递的选项。我试图传递值(32)和国家名称('巴西')或其他。

4

1 回答 1

2

我想您需要传递国家或模型实例的 ID。

如果您有一个 id 为 32 的国家“巴西”,则可以传入

{....
    'country' : 32
....}

或者

你可以先通过使用

country = Country.objects.get(id=32)
{....
    'country': country
....}
于 2014-02-04T08:02:56.647 回答