2014-07-16 20:47:57 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
#
|
|
|
|
# Copyright 2014 Google Inc. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style
|
|
|
|
# license that can be found in the LICENSE file or at
|
|
|
|
# https://developers.google.com/open-source/licenses/bsd
|
|
|
|
"""Test wrapper for the sample packager binary."""
|
|
|
|
|
|
|
|
import os
|
2016-08-14 22:28:21 +00:00
|
|
|
import platform
|
2014-07-16 20:47:57 +00:00
|
|
|
import subprocess
|
|
|
|
|
|
|
|
import test_env
|
|
|
|
|
|
|
|
|
|
|
|
class PackagerApp(object):
|
|
|
|
"""Main integration class for testing the packager binary."""
|
|
|
|
|
2016-01-07 19:29:19 +00:00
|
|
|
def __init__(self):
|
2016-08-14 22:28:21 +00:00
|
|
|
packager_name = 'packager'
|
|
|
|
if platform.system() == 'Windows':
|
|
|
|
packager_name += '.exe'
|
|
|
|
self.binary = os.path.join(test_env.SCRIPT_DIR, packager_name)
|
2017-04-04 23:35:25 +00:00
|
|
|
# Set this to empty for now in case GetCommandLine() is called before
|
|
|
|
# Package().
|
|
|
|
self.packaging_command_line = ''
|
2016-04-20 00:42:40 +00:00
|
|
|
assert os.path.exists(self.binary), ('Please run from output directory, '
|
|
|
|
'e.g. out/Debug/packager_test.py')
|
2014-07-16 20:47:57 +00:00
|
|
|
|
|
|
|
def DumpStreamInfo(self, stream):
|
|
|
|
input_str = 'input=%s' % stream
|
|
|
|
cmd = [self.binary, input_str, '--dump_stream_info']
|
|
|
|
return subprocess.check_output(cmd)
|
|
|
|
|
2015-12-21 23:10:17 +00:00
|
|
|
def Version(self):
|
2016-12-08 20:07:09 +00:00
|
|
|
return subprocess.check_output([self.binary, '--version'])
|
2015-12-21 23:10:17 +00:00
|
|
|
|
2014-07-16 20:47:57 +00:00
|
|
|
def Package(self, streams, flags=None):
|
2017-04-25 19:29:28 +00:00
|
|
|
"""Executes packager command."""
|
2014-07-16 20:47:57 +00:00
|
|
|
if flags is None:
|
|
|
|
flags = []
|
|
|
|
cmd = [self.binary]
|
|
|
|
cmd.extend(streams)
|
|
|
|
cmd.extend(flags)
|
2017-04-25 19:29:28 +00:00
|
|
|
|
|
|
|
if test_env.options.v:
|
|
|
|
cmd.extend(['--v=%s' % test_env.options.v])
|
|
|
|
if test_env.options.vmodule:
|
|
|
|
cmd.extend(['--vmodule="%s"' % test_env.options.vmodule])
|
|
|
|
|
2017-04-04 23:35:25 +00:00
|
|
|
# Put single-quotes around each entry so that things like '$' signs in
|
|
|
|
# segment templates won't be interpreted as shell variables.
|
|
|
|
self.packaging_command_line = ' '.join(["'%s'" % entry for entry in cmd])
|
2017-04-18 23:33:35 +00:00
|
|
|
assert 0 == subprocess.call(cmd), ('%s returned non-0 status' %
|
|
|
|
self.packaging_command_line)
|
2017-04-04 23:35:25 +00:00
|
|
|
|
|
|
|
def GetCommandLine(self):
|
|
|
|
return self.packaging_command_line
|