#!/usr/bin/env python # Copyright (c) 2012 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. """Unit tests for the common.py file.""" import gyp.common import unittest import sys class TestTopologicallySorted(unittest.TestCase): def test_Valid(self): """Test that sorting works on a valid graph with one possible order.""" graph = { 'a': ['b', 'c'], 'b': [], 'c': ['d'], 'd': ['b'], } def GetEdge(node): return tuple(graph[node]) self.assertEqual( gyp.common.TopologicallySorted(graph.keys(), GetEdge), ['a', 'c', 'd', 'b']) def test_Cycle(self): """Test that an exception is thrown on a cyclic graph.""" graph = { 'a': ['b'], 'b': ['c'], 'c': ['d'], 'd': ['a'], } def GetEdge(node): return tuple(graph[node]) self.assertRaises( gyp.common.CycleError, gyp.common.TopologicallySorted, graph.keys(), GetEdge) class TestGetFlavor(unittest.TestCase): """Test that gyp.common.GetFlavor works as intended""" original_platform = '' def setUp(self): self.original_platform = sys.platform def tearDown(self): sys.platform = self.original_platform def assertFlavor(self, expected, argument, param): sys.platform = argument self.assertEqual(expected, gyp.common.GetFlavor(param)) def test_platform_default(self): self.assertFlavor('freebsd', 'freebsd9' , {}) self.assertFlavor('freebsd', 'freebsd10', {}) self.assertFlavor('openbsd', 'openbsd5' , {}) self.assertFlavor('solaris', 'sunos5' , {}) self.assertFlavor('solaris', 'sunos' , {}) self.assertFlavor('linux' , 'linux2' , {}) self.assertFlavor('linux' , 'linux3' , {}) def test_param(self): self.assertFlavor('foobar', 'linux2' , {'flavor': 'foobar'}) if __name__ == '__main__': unittest.main()
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
generator | Folder | 0755 |
|
|
MSVSNew.py | File | 11.66 KB | 0644 |
|
MSVSProject.py | File | 6.24 KB | 0644 |
|
MSVSSettings.py | File | 44.17 KB | 0644 |
|
MSVSSettings_test.py | File | 64.56 KB | 0755 |
|
MSVSToolFile.py | File | 1.76 KB | 0644 |
|
MSVSUserFile.py | File | 4.97 KB | 0644 |
|
MSVSUtil.py | File | 9.31 KB | 0644 |
|
MSVSUtil.pyc | File | 7.55 KB | 0644 |
|
MSVSVersion.py | File | 17.02 KB | 0644 |
|
MSVSVersion.pyc | File | 14.28 KB | 0644 |
|
__init__.py | File | 21.87 KB | 0755 |
|
__init__.pyc | File | 16.22 KB | 0644 |
|
common.py | File | 20.58 KB | 0644 |
|
common.pyc | File | 19.59 KB | 0644 |
|
common_test.py | File | 1.92 KB | 0755 |
|
easy_xml.py | File | 4.87 KB | 0644 |
|
easy_xml_test.py | File | 3.25 KB | 0755 |
|
flock_tool.py | File | 1.71 KB | 0755 |
|
input.py | File | 113.65 KB | 0644 |
|
input.pyc | File | 62.62 KB | 0644 |
|
input_test.py | File | 3.11 KB | 0755 |
|
mac_tool.py | File | 22.89 KB | 0755 |
|
msvs_emulation.py | File | 47.1 KB | 0644 |
|
msvs_emulation.pyc | File | 47.84 KB | 0644 |
|
ninja_syntax.py | File | 5.41 KB | 0644 |
|
ninja_syntax.pyc | File | 6.47 KB | 0644 |
|
simple_copy.py | File | 1.3 KB | 0644 |
|
simple_copy.pyc | File | 2.23 KB | 0644 |
|
win_tool.py | File | 12.72 KB | 0755 |
|
xcode_emulation.py | File | 64.85 KB | 0644 |
|
xcode_emulation.pyc | File | 61.22 KB | 0644 |
|
xcode_ninja.py | File | 10.32 KB | 0644 |
|
xcode_ninja.pyc | File | 7.43 KB | 0644 |
|
xcodeproj_file.py | File | 117.66 KB | 0644 |
|
xcodeproj_file.pyc | File | 93.06 KB | 0644 |
|
xml_fix.py | File | 2.12 KB | 0644 |
|