1# Copyright 2020 Google LLC 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# https://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15"""Test rbe.""" 16 17import unittest 18from . import rbe 19 20class RBETest(unittest.TestCase): 21 """unittest for RBE.""" 22 23 def testExtraNsjailArgs(self): 24 self.assertEqual(rbe.get_extra_nsjail_args()[0], '--disable_clone_newnet') 25 26 def testEnv(self): 27 env = rbe.prepare_env(env=["RBE_instance=test_instance", "RBE_service=test_service"]) 28 self.assertIn('USE_RBE=true', env) 29 self.assertIn('RBE_instance=test_instance', env) 30 self.assertIn('RBE_JAVAC=true', env) 31 self.assertIn('RBE_D8=true', env) 32 self.assertIn('RBE_R8=true', env) 33 34 35if __name__ == '__main__': 36 unittest.main() 37