Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(513)

Unified Diff: tools/telemetry/third_party/gsutil/gslib/tests/test_notification.py

Issue 1260493004: Revert "Add gsutil 4.13 to telemetry/third_party" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/third_party/gsutil/gslib/tests/test_notification.py
diff --git a/tools/telemetry/third_party/gsutil/gslib/tests/test_notification.py b/tools/telemetry/third_party/gsutil/gslib/tests/test_notification.py
deleted file mode 100644
index 293549b828c5e544524146fa4df8b4b75fa1185f..0000000000000000000000000000000000000000
--- a/tools/telemetry/third_party/gsutil/gslib/tests/test_notification.py
+++ /dev/null
@@ -1,76 +0,0 @@
-# -*- 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)

Powered by Google App Engine
This is Rietveld 408576698