Exemplo n.º 1
0
 def test_open_file_attach(self, mock_new_resource):
     fd = open('tests/resources/tasks_list_success.json')
     rm = RequestMaker('/api/v1', 'fakehost', 'faketoken')
     epic = Epic(rm, id=1, project=1)
     epic.attach(fd)
     mock_new_resource.assert_called_with(files={'attached_file': fd},
                                          payload={
                                              'project': 1,
                                              'object_id': 1
                                          })
Exemplo n.º 2
0
 def test_open_file_attach(self, mock_new_resource):
     fd = open("tests/resources/tasks_list_success.json")
     rm = RequestMaker("/api/v1", "fakehost", "faketoken")
     epic = Epic(rm, id=1, project=1)
     epic.attach(fd)
     mock_new_resource.assert_called_with(files={"attached_file": fd},
                                          payload={
                                              "project": 1,
                                              "object_id": 1
                                          })
Exemplo n.º 3
0
 def test_create_epic(self, mock_new_resource):
     rm = RequestMaker('/api/v1', 'fakehost', 'faketoken')
     mock_new_resource.return_value = Epic(rm)
     Epics(rm).create(1, 'Epic 1')
     mock_new_resource.assert_called_with(payload={
         'project': 1,
         'subject': 'Epic 1'
     })
Exemplo n.º 4
0
 def test_list_attachments(self, mock_requestmaker_get):
     mock_requestmaker_get.return_value = MockResponse(
         200, create_mock_json('tests/resources/epics_list_success.json'))
     rm = RequestMaker('/api/v1', 'fakehost', 'faketoken')
     Epic(rm, id=1).list_attachments()
     mock_requestmaker_get.assert_called_with('epics/attachments',
                                              query={"object_id": 1},
                                              paginate=True)
Exemplo n.º 5
0
 def test_create_epic(self, mock_new_resource):
     rm = RequestMaker("/api/v1", "fakehost", "faketoken")
     mock_new_resource.return_value = Epic(rm)
     Epics(rm).create(1, "Epic 1")
     mock_new_resource.assert_called_with(payload={
         "project": 1,
         "subject": "Epic 1"
     })
Exemplo n.º 6
0
 def test_add_comment(self, mock_update):
     rm = RequestMaker('/api/v1', 'fakehost', 'faketoken')
     epic = Epic(rm, id=1)
     epic.add_comment('hola')
     mock_update.assert_called_with(comment='hola')
Exemplo n.º 7
0
 def test_not_valid_type_file_attach(self):
     rm = RequestMaker('/api/v1', 'fakehost', 'faketoken')
     epic = Epic(rm, id=1, project=1)
     self.assertRaises(TaigaException, epic.attach, 4)
Exemplo n.º 8
0
 def test_not_existing_file_attach(self):
     rm = RequestMaker('/api/v1', 'fakehost', 'faketoken')
     epic = Epic(rm, id=1, project=1)
     self.assertRaises(TaigaException, epic.attach, 'not-existing-file')
Exemplo n.º 9
0
 def test_add_comment(self, mock_update):
     rm = RequestMaker("/api/v1", "fakehost", "faketoken")
     epic = Epic(rm, id=1)
     epic.add_comment("hola")
     mock_update.assert_called_with(comment="hola")
Exemplo n.º 10
0
 def test_not_existing_file_attach(self):
     rm = RequestMaker("/api/v1", "fakehost", "faketoken")
     epic = Epic(rm, id=1, project=1)
     self.assertRaises(TaigaException, epic.attach, "not-existing-file")