コード例 #1
0
    def test_upload_delete_exists_event_success(self):
        image_event = utils.get_image_event()
        image_event['event_time'] = '2015-10-01T01:00:00.000000'
        self.post_json('/events', image_event)

        image_event['event_type'] = 'delete'
        image_event['event_time'] = '2015-10-11T01:00:00.000000'
        self.post_json('/events', image_event)

        url = '/resources/' + image_event['resource_id']
        res = self.get_json(url)
        self.assertEqual(res['status'], 'delete')
        self.assertEqual(int(res['consumption']), 2400)

        image_event['event_type'] = 'exists'
        image_event['event_time'] = '2015-10-21T01:00:00.000000'
        self.post_json('/events', image_event, expect_errors=True)

        url = '/resources/' + image_event['resource_id']
        res = self.get_json(url)
        self.assertEqual(res['status'], 'delete')
        self.assertEqual(int(res['consumption']), 2400)

        url = '/records/' + image_event['resource_id']
        records = self.get_json(url)
        self.assertEqual(len(records), 1)
        self.assertEqual(int(records[0]['consumption']), 2400)
コード例 #2
0
ファイル: test_event_image.py プロジェクト: DeliangFan/koala
    def test_upload_delete_exists_event_success(self):
        image_event = utils.get_image_event()
        image_event['event_time'] = '2015-10-01T01:00:00.000000'
        self.post_json('/events', image_event)

        image_event['event_type'] = 'delete'
        image_event['event_time'] = '2015-10-11T01:00:00.000000'
        self.post_json('/events', image_event)

        url = '/resources/' + image_event['resource_id']
        res = self.get_json(url)
        self.assertEqual(res['status'], 'delete')
        self.assertEqual(int(res['consumption']), 2400)

        image_event['event_type'] = 'exists'
        image_event['event_time'] = '2015-10-21T01:00:00.000000'
        self.post_json('/events', image_event, expect_errors=True)

        url = '/resources/' + image_event['resource_id']
        res = self.get_json(url)
        self.assertEqual(res['status'], 'delete')
        self.assertEqual(int(res['consumption']), 2400)

        url = '/records/' + image_event['resource_id']
        records = self.get_json(url)
        self.assertEqual(len(records), 1)
        self.assertEqual(int(records[0]['consumption']), 2400)
コード例 #3
0
    def test_upload_upload_event_fail(self):
        image_event = utils.get_image_event()
        image_event['event_time'] = '2015-10-01T01:00:00.000000'
        self.post_json('/events', image_event)

        image_event['event_time'] = '2015-10-01T01:00:00.000000'
        self.post_json('/events', image_event, expect_errors=True)
コード例 #4
0
ファイル: test_event_image.py プロジェクト: DeliangFan/koala
    def test_upload_upload_event_fail(self):
        image_event = utils.get_image_event()
        image_event['event_time'] = '2015-10-01T01:00:00.000000'
        self.post_json('/events', image_event)

        image_event['event_time'] = '2015-10-01T01:00:00.000000'
        self.post_json('/events', image_event, expect_errors=True)
コード例 #5
0
    def test_with_wrong_event_time(self):
        image_event = utils.get_image_event()
        image_event['event_time'] = '2015-10-01T01:00:00.000000'
        self.post_json('/events', image_event)

        image_event['event_type'] = 'exists'
        image_event['event_time'] = '2015-09-01T01:00:00.000000'
        self.post_json('/events', image_event, expect_errors=True)
コード例 #6
0
ファイル: test_event_image.py プロジェクト: DeliangFan/koala
    def test_with_wrong_event_time(self):
        image_event = utils.get_image_event()
        image_event['event_time'] = '2015-10-01T01:00:00.000000'
        self.post_json('/events', image_event)

        image_event['event_type'] = 'exists'
        image_event['event_time'] = '2015-09-01T01:00:00.000000'
        self.post_json('/events', image_event, expect_errors=True)
コード例 #7
0
    def test_post_delete_event_success(self):
        image_event = utils.get_image_event()
        image_event['event_type'] = 'delete'
        self.post_json('/events', image_event)

        url = '/resources/' + image_event['resource_id']
        self.get_json(url, expect_errors=True)

        url = '/records/' + image_event['resource_id']
        self.get_json(url, expect_errors=True)
コード例 #8
0
ファイル: test_event_image.py プロジェクト: DeliangFan/koala
    def test_post_delete_event_success(self):
        image_event = utils.get_image_event()
        image_event['event_type'] = 'delete'
        self.post_json('/events', image_event)

        url = '/resources/' + image_event['resource_id']
        self.get_json(url, expect_errors=True)

        url = '/records/' + image_event['resource_id']
        self.get_json(url, expect_errors=True)
コード例 #9
0
    def test_post_upload_event_success(self):
        image_event = utils.get_image_event()
        self.post_json('/events', image_event)

        url = '/resources/' + image_event['resource_id']
        res = self.get_json(url)
        self.assertEqual(res['status'], 'active')
        self.assertEqual(int(res['consumption']), 0)

        url = '/records/' + image_event['resource_id']
        self.get_json(url, expect_errors=True)
コード例 #10
0
ファイル: test_event_image.py プロジェクト: DeliangFan/koala
    def test_post_upload_event_success(self):
        image_event = utils.get_image_event()
        self.post_json('/events', image_event)

        url = '/resources/' + image_event['resource_id']
        res = self.get_json(url)
        self.assertEqual(res['status'], 'active')
        self.assertEqual(int(res['consumption']), 0)

        url = '/records/' + image_event['resource_id']
        self.get_json(url, expect_errors=True)
コード例 #11
0
 def test_without_wrong_type(self):
     image_event = utils.get_image_event()
     image_event['event_type'] = 'create'
     self.post_json('/events', image_event, expect_errors=True)
コード例 #12
0
 def test_without_wrong_size_in_content(self):
     image_event = utils.get_image_event()
     image_event['content']['size'] = 'wrong_size'
     self.post_json('/events', image_event, expect_errors=True)
コード例 #13
0
 def test_without_wrong_content(self):
     image_event = utils.get_image_event()
     image_event.pop('content')
     self.post_json('/events', image_event, expect_errors=True)
コード例 #14
0
 def test_without_tenant_id(self):
     image_event = utils.get_image_event()
     image_event.pop('tenant_id')
     self.post_json('/events', image_event, expect_errors=True)
コード例 #15
0
ファイル: test_event_image.py プロジェクト: DeliangFan/koala
 def test_without_tenant_id(self):
     image_event = utils.get_image_event()
     image_event.pop('tenant_id')
     self.post_json('/events', image_event, expect_errors=True)
コード例 #16
0
ファイル: test_event_image.py プロジェクト: DeliangFan/koala
 def test_without_wrong_type(self):
     image_event = utils.get_image_event()
     image_event['event_type'] = 'create'
     self.post_json('/events', image_event, expect_errors=True)
コード例 #17
0
ファイル: test_event_image.py プロジェクト: DeliangFan/koala
 def test_without_wrong_size_in_content(self):
     image_event = utils.get_image_event()
     image_event['content']['size'] = 'wrong_size'
     self.post_json('/events', image_event, expect_errors=True)
コード例 #18
0
ファイル: test_event_image.py プロジェクト: DeliangFan/koala
 def test_without_wrong_content(self):
     image_event = utils.get_image_event()
     image_event.pop('content')
     self.post_json('/events', image_event, expect_errors=True)