| Index: third_party/gsutil/gslib/tests/test_notification.py
|
| diff --git a/third_party/gsutil/gslib/tests/test_notification.py b/third_party/gsutil/gslib/tests/test_notification.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..293549b828c5e544524146fa4df8b4b75fa1185f
|
| --- /dev/null
|
| +++ b/third_party/gsutil/gslib/tests/test_notification.py
|
| @@ -0,0 +1,76 @@
|
| +# -*- coding: utf-8 -*-
|
| +# Copyright 2013 Google Inc. All Rights Reserved.
|
| +#
|
| +# Licensed under the Apache License, Version 2.0 (the "License");
|
| +# you may not use this file except in compliance with the License.
|
| +# You may obtain a copy of the License at
|
| +#
|
| +# http://www.apache.org/licenses/LICENSE-2.0
|
| +#
|
| +# Unless required by applicable law or agreed to in writing, software
|
| +# distributed under the License is distributed on an "AS IS" BASIS,
|
| +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| +# See the License for the specific language governing permissions and
|
| +# limitations under the License.
|
| +"""Integration tests for notification command."""
|
| +
|
| +from __future__ import absolute_import
|
| +
|
| +import re
|
| +import uuid
|
| +
|
| +import boto
|
| +
|
| +import gslib.tests.testcase as testcase
|
| +from gslib.tests.util import ObjectToURI as suri
|
| +from gslib.tests.util import unittest
|
| +
|
| +
|
| +def _LoadNotificationUrl():
|
| + return boto.config.get_value('GSUtil', 'test_notification_url')
|
| +
|
| +NOTIFICATION_URL = _LoadNotificationUrl()
|
| +
|
| +
|
| +class TestNotification(testcase.GsUtilIntegrationTestCase):
|
| + """Integration tests for notification command."""
|
| +
|
| + @unittest.skipUnless(NOTIFICATION_URL,
|
| + 'Test requires notification URL configuration.')
|
| + def test_watch_bucket(self):
|
| + """Tests creating a notification channel on a bucket."""
|
| + bucket_uri = self.CreateBucket()
|
| + self.RunGsUtil([
|
| + 'notification', 'watchbucket', NOTIFICATION_URL, suri(bucket_uri)])
|
| +
|
| + identifier = str(uuid.uuid4())
|
| + token = str(uuid.uuid4())
|
| + stderr = self.RunGsUtil([
|
| + 'notification', 'watchbucket', '-i', identifier, '-t', token,
|
| + NOTIFICATION_URL, suri(bucket_uri)], return_stderr=True)
|
| + self.assertIn('token: %s' % token, stderr)
|
| + self.assertIn('identifier: %s' % identifier, stderr)
|
| +
|
| + @unittest.skipUnless(NOTIFICATION_URL,
|
| + 'Test requires notification URL configuration.')
|
| + def test_stop_channel(self):
|
| + """Tests stopping a notification channel on a bucket."""
|
| + bucket_uri = self.CreateBucket()
|
| + stderr = self.RunGsUtil(
|
| + ['notification', 'watchbucket', NOTIFICATION_URL, suri(bucket_uri)],
|
| + return_stderr=True)
|
| +
|
| + channel_id = re.findall(r'channel identifier: (?P<id>.*)', stderr)
|
| + self.assertEqual(len(channel_id), 1)
|
| + resource_id = re.findall(r'resource identifier: (?P<id>.*)', stderr)
|
| + self.assertEqual(len(resource_id), 1)
|
| +
|
| + channel_id = channel_id[0]
|
| + resource_id = resource_id[0]
|
| +
|
| + self.RunGsUtil(['notification', 'stopchannel', channel_id, resource_id])
|
| +
|
| + def test_invalid_subcommand(self):
|
| + stderr = self.RunGsUtil(['notification', 'foo', 'bar', 'baz'],
|
| + return_stderr=True, expected_status=1)
|
| + self.assertIn('Invalid subcommand', stderr)
|
|
|