Index: build/android/devil/utils/cmd_helper_test.py |
diff --git a/build/android/devil/utils/cmd_helper_test.py b/build/android/devil/utils/cmd_helper_test.py |
deleted file mode 100755 |
index c01c31947a3c38e6c48d754fbe63632c76db3674..0000000000000000000000000000000000000000 |
--- a/build/android/devil/utils/cmd_helper_test.py |
+++ /dev/null |
@@ -1,118 +0,0 @@ |
-#!/usr/bin/env python |
-# Copyright 2013 The Chromium Authors. All rights reserved. |
-# Use of this source code is governed by a BSD-style license that can be |
-# found in the LICENSE file. |
- |
-"""Tests for the cmd_helper module.""" |
- |
-import unittest |
-import subprocess |
- |
-from devil.utils import cmd_helper |
- |
- |
-class CmdHelperSingleQuoteTest(unittest.TestCase): |
- |
- def testSingleQuote_basic(self): |
- self.assertEquals('hello', |
- cmd_helper.SingleQuote('hello')) |
- |
- def testSingleQuote_withSpaces(self): |
- self.assertEquals("'hello world'", |
- cmd_helper.SingleQuote('hello world')) |
- |
- def testSingleQuote_withUnsafeChars(self): |
- self.assertEquals("""'hello'"'"'; rm -rf /'""", |
- cmd_helper.SingleQuote("hello'; rm -rf /")) |
- |
- def testSingleQuote_dontExpand(self): |
- test_string = 'hello $TEST_VAR' |
- cmd = 'TEST_VAR=world; echo %s' % cmd_helper.SingleQuote(test_string) |
- self.assertEquals(test_string, |
- cmd_helper.GetCmdOutput(cmd, shell=True).rstrip()) |
- |
- |
-class CmdHelperDoubleQuoteTest(unittest.TestCase): |
- |
- def testDoubleQuote_basic(self): |
- self.assertEquals('hello', |
- cmd_helper.DoubleQuote('hello')) |
- |
- def testDoubleQuote_withSpaces(self): |
- self.assertEquals('"hello world"', |
- cmd_helper.DoubleQuote('hello world')) |
- |
- def testDoubleQuote_withUnsafeChars(self): |
- self.assertEquals('''"hello\\"; rm -rf /"''', |
- cmd_helper.DoubleQuote('hello"; rm -rf /')) |
- |
- def testSingleQuote_doExpand(self): |
- test_string = 'hello $TEST_VAR' |
- cmd = 'TEST_VAR=world; echo %s' % cmd_helper.DoubleQuote(test_string) |
- self.assertEquals('hello world', |
- cmd_helper.GetCmdOutput(cmd, shell=True).rstrip()) |
- |
- |
-class CmdHelperShinkToSnippetTest(unittest.TestCase): |
- |
- def testShrinkToSnippet_noArgs(self): |
- self.assertEquals('foo', |
- cmd_helper.ShrinkToSnippet(['foo'], 'a', 'bar')) |
- self.assertEquals("'foo foo'", |
- cmd_helper.ShrinkToSnippet(['foo foo'], 'a', 'bar')) |
- self.assertEquals('"$a"\' bar\'', |
- cmd_helper.ShrinkToSnippet(['foo bar'], 'a', 'foo')) |
- self.assertEquals('\'foo \'"$a"', |
- cmd_helper.ShrinkToSnippet(['foo bar'], 'a', 'bar')) |
- self.assertEquals('foo"$a"', |
- cmd_helper.ShrinkToSnippet(['foobar'], 'a', 'bar')) |
- |
- def testShrinkToSnippet_singleArg(self): |
- self.assertEquals("foo ''", |
- cmd_helper.ShrinkToSnippet(['foo', ''], 'a', 'bar')) |
- self.assertEquals("foo foo", |
- cmd_helper.ShrinkToSnippet(['foo', 'foo'], 'a', 'bar')) |
- self.assertEquals('"$a" "$a"', |
- cmd_helper.ShrinkToSnippet(['foo', 'foo'], 'a', 'foo')) |
- self.assertEquals('foo "$a""$a"', |
- cmd_helper.ShrinkToSnippet(['foo', 'barbar'], 'a', 'bar')) |
- self.assertEquals('foo "$a"\' \'"$a"', |
- cmd_helper.ShrinkToSnippet(['foo', 'bar bar'], 'a', 'bar')) |
- self.assertEquals('foo "$a""$a"\' \'', |
- cmd_helper.ShrinkToSnippet(['foo', 'barbar '], 'a', 'bar')) |
- self.assertEquals('foo \' \'"$a""$a"\' \'', |
- cmd_helper.ShrinkToSnippet(['foo', ' barbar '], 'a', 'bar')) |
- |
-class CmdHelperIterCmdOutputLinesTest(unittest.TestCase): |
- """Test IterCmdOutputLines with some calls to the unix 'seq' command.""" |
- |
- def testIterCmdOutputLines_success(self): |
- for num, line in enumerate( |
- cmd_helper.IterCmdOutputLines(['seq', '10']), 1): |
- self.assertEquals(num, int(line)) |
- |
- def testIterCmdOutputLines_exitStatusFail(self): |
- with self.assertRaises(subprocess.CalledProcessError): |
- for num, line in enumerate( |
- cmd_helper.IterCmdOutputLines('seq 10 && false', shell=True), 1): |
- self.assertEquals(num, int(line)) |
- # after reading all the output we get an exit status of 1 |
- |
- def testIterCmdOutputLines_exitStatusIgnored(self): |
- for num, line in enumerate( |
- cmd_helper.IterCmdOutputLines('seq 10 && false', shell=True, |
- check_status=False), 1): |
- self.assertEquals(num, int(line)) |
- |
- def testIterCmdOutputLines_exitStatusSkipped(self): |
- for num, line in enumerate( |
- cmd_helper.IterCmdOutputLines('seq 10 && false', shell=True), 1): |
- self.assertEquals(num, int(line)) |
- # no exception will be raised because we don't attempt to read past |
- # the end of the output and, thus, the status never gets checked |
- if num == 10: |
- break |
- |
- |
-if __name__ == '__main__': |
- unittest.main() |