2016-09-20 22:51:11 +02:00
# -*- coding: utf-8 -*-
2017-11-16 00:43:10 +01:00
2016-11-10 19:30:09 +01:00
from zerver . lib . test_classes import WebhookTestCase
2016-09-20 22:51:11 +02:00
class PivotalV3HookTests ( WebhookTestCase ) :
STREAM_NAME = ' pivotal '
URL_TEMPLATE = u " /api/v1/external/pivotal?stream= {stream} &api_key= {api_key} "
2017-11-04 07:47:46 +01:00
def test_accepted ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' My new Feature story '
2016-09-20 22:51:11 +02:00
expected_message = ' Leo Franchi accepted " My new Feature story " \
[ ( view ) ] ( https : / / www . pivotaltracker . com / s / projects / 807213 / stories / 48276573 ) '
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' accepted ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_commented ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' Comment added '
2016-09-20 22:51:11 +02:00
expected_message = ' Leo Franchi added comment: " FIX THIS NOW " \
[ ( view ) ] ( https : / / www . pivotaltracker . com / s / projects / 807213 / stories / 48276573 ) '
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' commented ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_created ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' My new Feature story '
2016-09-20 22:51:11 +02:00
expected_message = ' Leo Franchi added " My new Feature story " \
( unscheduled feature ) : \n \n ~ ~ ~ quote \nThis is my long description \n ~ ~ ~ \n \n \
[ ( view ) ] ( https : / / www . pivotaltracker . com / s / projects / 807213 / stories / 48276573 ) '
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' created ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_delivered ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' Another new story '
2016-09-20 22:51:11 +02:00
expected_message = ' Leo Franchi delivered " Another new story " \
[ ( view ) ] ( https : / / www . pivotaltracker . com / s / projects / 807213 / stories / 48278289 ) '
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' delivered ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_finished ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' Another new story '
2016-09-20 22:51:11 +02:00
expected_message = ' Leo Franchi finished " Another new story " \
[ ( view ) ] ( https : / / www . pivotaltracker . com / s / projects / 807213 / stories / 48278289 ) '
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' finished ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_moved ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' My new Feature story '
2016-09-20 22:51:11 +02:00
expected_message = ' Leo Franchi edited " My new Feature story " \
[ ( view ) ] ( https : / / www . pivotaltracker . com / s / projects / 807213 / stories / 48276573 ) '
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' moved ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_rejected ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' Another new story '
2016-09-20 22:51:11 +02:00
expected_message = ' Leo Franchi rejected " Another new story " with comments: \
" Not good enough, sorry " [ ( view ) ] ( https : / / www . pivotaltracker . com / s / projects / 807213 / stories / 48278289 ) '
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' rejected ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_started ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' Another new story '
2016-09-20 22:51:11 +02:00
expected_message = ' Leo Franchi started " Another new story " \
[ ( view ) ] ( https : / / www . pivotaltracker . com / s / projects / 807213 / stories / 48278289 ) '
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' started ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_created_estimate ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' Another new story '
2016-09-20 22:51:11 +02:00
expected_message = ' Leo Franchi added " Another new story " \
( unscheduled feature worth 2 story points ) : \n \n ~ ~ ~ quote \nSome loong description \n ~ ~ ~ \n \n \
[ ( view ) ] ( https : / / www . pivotaltracker . com / s / projects / 807213 / stories / 48278289 ) '
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' created_estimate ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_type_changed ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' My new Feature story '
2016-09-20 22:51:11 +02:00
expected_message = ' Leo Franchi edited " My new Feature story " \
[ ( view ) ] ( https : / / www . pivotaltracker . com / s / projects / 807213 / stories / 48276573 ) '
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' type_changed ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2018-05-10 19:34:01 +02:00
def get_body ( self , fixture_name : str ) - > str :
2018-04-20 03:57:21 +02:00
return self . webhook_fixture_data ( ' pivotal ' , fixture_name , file_type = ' xml ' )
2016-09-20 22:51:11 +02:00
class PivotalV5HookTests ( WebhookTestCase ) :
STREAM_NAME = ' pivotal '
URL_TEMPLATE = u " /api/v1/external/pivotal?stream= {stream} &api_key= {api_key} "
2017-11-04 07:47:46 +01:00
def test_accepted ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' #63486316: Story of the Year '
2016-09-20 22:51:11 +02:00
expected_message = """ Leo Franchi updated [Hard Code](https://www.pivotaltracker.com/s/projects/807213): [Story of the Year](http://www.pivotaltracker.com/story/show/63486316):
2017-02-12 04:22:13 +01:00
* state changed from * * unstarted * * to * * accepted * * """
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' accepted ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_commented ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' #63486316: Story of the Year '
2016-09-20 22:51:11 +02:00
expected_message = """ Leo Franchi added a comment to [Hard Code](https://www.pivotaltracker.com/s/projects/807213): [Story of the Year](http://www.pivotaltracker.com/story/show/63486316):
~ ~ ~ quote
A comment on the story
~ ~ ~ """
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' commented ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_created ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' #63495662: Story that I created '
2016-09-20 22:51:11 +02:00
expected_message = """ Leo Franchi created bug: [Hard Code](https://www.pivotaltracker.com/s/projects/807213): [Story that I created](http://www.pivotaltracker.com/story/show/63495662)
* State is * * unscheduled * *
* Description is
> What a description """
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' created ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_delivered ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' #63486316: Story of the Year '
2016-09-20 22:51:11 +02:00
expected_message = """ Leo Franchi updated [Hard Code](https://www.pivotaltracker.com/s/projects/807213): [Story of the Year](http://www.pivotaltracker.com/story/show/63486316):
2017-02-12 04:22:13 +01:00
* state changed from * * accepted * * to * * delivered * * """
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' delivered ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_finished ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' #63486316: Story of the Year '
2016-09-20 22:51:11 +02:00
expected_message = """ Leo Franchi updated [Hard Code](https://www.pivotaltracker.com/s/projects/807213): [Story of the Year](http://www.pivotaltracker.com/story/show/63486316):
2017-02-12 04:22:13 +01:00
* state changed from * * delivered * * to * * accepted * * """
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' finished ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_moved ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' #63496066: Pivotal Test '
2016-09-20 22:51:11 +02:00
expected_message = """ Leo Franchi moved [Hard Code](https://www.pivotaltracker.com/s/projects/807213): [Pivotal Test](http://www.pivotaltracker.com/story/show/63496066) from **unstarted** to **unscheduled** """
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' moved ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_rejected ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' #63486316: Story of the Year '
2016-09-20 22:51:11 +02:00
expected_message = """ Leo Franchi updated [Hard Code](https://www.pivotaltracker.com/s/projects/807213): [Story of the Year](http://www.pivotaltracker.com/story/show/63486316):
* Comment added :
~ ~ ~ quote
Try again next time
~ ~ ~
2017-02-12 04:22:13 +01:00
* state changed from * * delivered * * to * * rejected * * """
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' rejected ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_started ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' #63495972: Fresh Story '
2016-09-20 22:51:11 +02:00
expected_message = """ Leo Franchi updated [Hard Code](https://www.pivotaltracker.com/s/projects/807213): [Fresh Story](http://www.pivotaltracker.com/story/show/63495972):
2017-02-12 04:22:13 +01:00
* state changed from * * unstarted * * to * * started * * """
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' started ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_created_estimate ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' #63496066: Pivotal Test '
2016-09-20 22:51:11 +02:00
expected_message = """ Leo Franchi updated [Hard Code](https://www.pivotaltracker.com/s/projects/807213): [Pivotal Test](http://www.pivotaltracker.com/story/show/63496066):
2017-02-12 04:22:13 +01:00
* estimate is now * * 3 points * * """
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' created_estimate ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2017-11-04 07:47:46 +01:00
def test_type_changed ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = ' #63496066: Pivotal Test '
2016-09-20 22:51:11 +02:00
expected_message = """ Leo Franchi updated [Hard Code](https://www.pivotaltracker.com/s/projects/807213): [Pivotal Test](http://www.pivotaltracker.com/story/show/63496066):
* estimate changed from 3 to * * 0 points * *
2017-02-12 04:22:13 +01:00
* type changed from * * feature * * to * * bug * * """
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' type_changed ' , expected_topic , expected_message , content_type = " application/xml " )
2016-09-20 22:51:11 +02:00
2018-05-10 19:34:01 +02:00
def get_body ( self , fixture_name : str ) - > str :
2018-04-20 03:57:21 +02:00
return self . webhook_fixture_data ( ' pivotal ' , " v5_ {} " . format ( fixture_name ) , file_type = ' json ' )