blob: 975a67f25d17c3ff3002b1dd45a535d0c140a65f [file] [log] [blame]
#!/usr/bin/env python
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os
import unittest
import tempfile
import test_env
from lib.host import Host
from host_mock import MockHost
class TestHost(unittest.TestCase):
def test_zircon_tool(self):
host = MockHost()
path = os.path.abspath(__file__)
line = host.zircon_tool(['merkleroot', path])
self.assertRegexpMatches(line, r'[0-9a-f]* - ' + path)
with self.assertRaises(OSError):
host.zircon_tool(['no_such_tool'])
def test_symbolize(self):
host = MockHost()
tmp_in = tempfile.TemporaryFile()
tmp_out = tempfile.TemporaryFile()
host.symbolize(tmp_in, tmp_out)
def test_notify_user(self):
host = MockHost()
host.notify_user('This is a test', 'This is only a test.')
if __name__ == '__main__':
unittest.main()