blob: b87d78551bc49e997d932dd69c0b8dadcc87a517 [file] [log] [blame]
# Copyright 2020 Google LLC
#
# 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.
"""Unit tests for appengine module."""
from absl.testing import absltest
import cloudstorage
from google.appengine.ext import testbed
from google3.apphosting.contrib.testing import internal_testbed
from tradefed_cluster.plugins import appengine
class AppManagerTest(absltest.TestCase):
"""Unit tests fro Appengine app manager."""
def setUp(self):
super(AppManagerTest, self).setUp()
self.testbed = internal_testbed.Testbed()
self.testbed.activate()
self.testbed.init_all_stubs()
self.addCleanup(self.testbed.deactivate)
self.app_manager = appengine.AppManager()
def testGetInfo(self):
info = self.app_manager.GetInfo('default')
self.assertEqual('default', info.name)
self.assertEqual('localhost:8080', info.hostname)
class MailerTest(absltest.TestCase):
"""Unit tests for Appengine mailer."""
def setUp(self):
super(MailerTest, self).setUp()
self.testbed = internal_testbed.Testbed()
self.testbed.activate()
self.testbed.init_all_stubs()
self.mail_stub = self.testbed.get_stub(testbed.MAIL_SERVICE_NAME)
self.addCleanup(self.testbed.deactivate)
self.mailer = appengine.Mailer()
def testSendMail(self):
self.mailer.SendMail(
sender='send',
to='recipient',
subject='hello',
html='bye',
reply_to=None,
cc=None,
bcc=None)
messages = self.mail_stub.get_sent_messages()
self.assertLen(messages, 1)
message = messages[0]
self.assertEqual('send', message.sender)
self.assertEqual('recipient', message.to)
self.assertEqual('hello', message.subject)
self.assertEqual('bye', message.html.decode())
self.assertFalse(hasattr(message, 'reply_to'))
self.assertFalse(hasattr(message, 'cc'))
self.assertFalse(hasattr(message, 'bcc'))
def testSendMail_withCCandBCC(self):
self.mailer.SendMail(
sender='send',
to='recipient',
subject='hello',
html='bye',
reply_to='reply_to',
cc='cc',
bcc='bcc')
messages = self.mail_stub.get_sent_messages()
self.assertLen(messages, 1)
message = messages[0]
self.assertEqual('send', message.sender)
self.assertEqual('recipient', message.to)
self.assertEqual('hello', message.subject)
self.assertEqual('bye', message.html.decode())
self.assertEqual('reply_to', message.reply_to)
self.assertEqual('cc', message.cc)
self.assertEqual('bcc', message.bcc)
class FileStorageTest(absltest.TestCase):
"""Unit tests for Appengine file storage."""
def setUp(self):
super(FileStorageTest, self).setUp()
self.testbed = internal_testbed.Testbed()
self.testbed.activate()
self.testbed.init_all_stubs()
self.addCleanup(self.testbed.deactivate)
self.file_storage = appengine.FileStorage()
def _CreateFile(self, path, content):
with cloudstorage.open(path, mode='w') as f:
f.write(content)
def testOpenFile(self):
self._CreateFile('/path/to/file', b'hello')
with self.file_storage.OpenFile(
'/path/to/file',
mode='r',
content_type=None,
content_encoding=None) as f:
self.assertEqual(b'hello', f.read())
def testListFiles(self):
paths = ['/path/to/file', '/path/to/file2', '/path/to/file3']
for path in paths:
self._CreateFile(path, b'hello')
file_infos = self.file_storage.ListFiles('/path/to/')
for file_info, path in zip(file_infos, paths):
self.assertEqual(path, file_info.filename)
self.assertFalse(file_info.is_dir)
self.assertEqual(5, file_info.size)
if __name__ == '__main__':
absltest.main()