本文整理匯總了Python中temba.contacts.models.URN.from_wechat方法的典型用法代碼示例。如果您正苦於以下問題:Python URN.from_wechat方法的具體用法?Python URN.from_wechat怎麽用?Python URN.from_wechat使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類temba.contacts.models.URN
的用法示例。
在下文中一共展示了URN.from_wechat方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_claim
# 需要導入模塊: from temba.contacts.models import URN [as 別名]
# 或者: from temba.contacts.models.URN import from_wechat [as 別名]
def test_claim(self):
url = reverse("channels.types.wechat.claim")
self.login(self.admin)
# check that claim page URL appears on claim list page
response = self.client.get(reverse("channels.channel_claim"))
self.assertNotContains(response, url)
# try to claim a channel
response = self.client.get(url)
post_data = response.context["form"].initial
post_data["app_id"] = "foofoofoofoofoofoofoofoofoofoofoofoofoofoofoofoofoofoofoofoo"
post_data["app_secret"] = "barbarbarbarbarbarbarbarbarbarbarbarbarbarbarbarbarbarbarbar"
response = self.client.post(url, post_data)
channel = Channel.objects.get(channel_type="WC")
self.assertEqual(
channel.config,
{
"wechat_app_id": post_data["app_id"],
"wechat_app_secret": post_data["app_secret"],
"secret": channel.config["secret"],
},
)
config_url = reverse("channels.channel_configuration", args=[channel.uuid])
self.assertRedirect(response, config_url)
response = self.client.get(config_url)
self.assertEqual(200, response.status_code)
self.assertContains(response, reverse("courier.wc", args=[channel.uuid]))
self.assertContains(response, channel.config[Channel.CONFIG_SECRET])
# check we show the IP to whitelist
self.assertContains(response, "10.10.10.10")
self.assertContains(response, "172.16.20.30")
contact = self.create_contact("WeChat User", urn=URN.from_wechat("1234"))
# make sure we our jiochat channel satisfies as a send channel
response = self.client.get(reverse("contacts.contact_read", args=[contact.uuid]))
send_channel = response.context["send_channel"]
self.assertIsNotNone(send_channel)
self.assertEqual(send_channel.channel_type, "WC")