aboutsummaryrefslogtreecommitdiff
path: root/crosperf/flag_test_unittest.py
blob: 0e74327477e9b0cd2b774f73c4a9fe1e5598980c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python2
#
# Copyright 2014 Google Inc. All Rights Reserved.
"""The unittest of flags."""

from __future__ import print_function
import test_flag

import unittest


class FlagTestCase(unittest.TestCase):
  """The unittest class."""

  def test_test_flag(self):
    # Verify that test_flag.is_test exists, that it is a list,
    # and that it contains 1 element.
    self.assertTrue(type(test_flag.is_test) is list)
    self.assertEqual(len(test_flag.is_test), 1)

    # Verify that the getting the flag works and that the flag
    # contains False, its starting value.
    save_flag = test_flag.GetTestMode()
    self.assertFalse(save_flag)

    # Verify that setting the flat to True, then getting it, works.
    test_flag.SetTestMode(True)
    self.assertTrue(test_flag.GetTestMode())

    # Verify that setting the flag to False, then getting it, works.
    test_flag.SetTestMode(save_flag)
    self.assertFalse(test_flag.GetTestMode())

    # Verify that test_flag.is_test still exists, that it still is a
    # list, and that it still contains 1 element.
    self.assertTrue(type(test_flag.is_test) is list)
    self.assertEqual(len(test_flag.is_test), 1)


if __name__ == '__main__':
  unittest.main()