summaryrefslogtreecommitdiff
path: root/build/fuchsia/boot_data_test.py
diff options
context:
space:
mode:
authorCronet Mainline Eng <cronet-mainline-eng+copybara@google.com>2023-04-17 14:36:25 -0800
committerPatrick Rohr <prohr@google.com>2023-04-17 15:41:30 -0700
commit41cb724250484f326b0bbd5f8b955eb37b3b83c6 (patch)
treecb7b2cbe08b2c5305a56b31649359f8141edd198 /build/fuchsia/boot_data_test.py
parentc175721cfcc03e339122be17d569239df9762b2b (diff)
downloadcronet-41cb724250484f326b0bbd5f8b955eb37b3b83c6.tar.gz
Import Cronet version 114.0.5709.3
Project import generated by Copybara. FolderOrigin-RevId: /tmp/copybara-origin/src Test: none Change-Id: I263aa6b692a17ac2471b98b6e662b26dd1327c9c
Diffstat (limited to 'build/fuchsia/boot_data_test.py')
-rwxr-xr-xbuild/fuchsia/boot_data_test.py46
1 files changed, 0 insertions, 46 deletions
diff --git a/build/fuchsia/boot_data_test.py b/build/fuchsia/boot_data_test.py
deleted file mode 100755
index 1c0f58bb3..000000000
--- a/build/fuchsia/boot_data_test.py
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/env vpython3
-# Copyright 2021 The Chromium Authors
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import boot_data
-import os
-import unittest
-from boot_data import _SSH_CONFIG_DIR, _SSH_DIR, _GetAuthorizedKeysPath, \
- GetSSHConfigPath
-
-
-class TestBootData(unittest.TestCase):
- def testProvisionSSHGeneratesFiles(self):
- fuchsia_authorized_keys_path = _GetAuthorizedKeysPath()
- fuchsia_id_key_path = os.path.join(_SSH_DIR, 'fuchsia_ed25519')
- fuchsia_pub_key_path = os.path.join(_SSH_DIR, 'fuchsia_ed25519.pub')
- ssh_config_path = GetSSHConfigPath()
- # Check if the keys exists before generating. If they do, delete them
- # afterwards before asserting if ProvisionSSH works.
- authorized_key_before = os.path.exists(fuchsia_authorized_keys_path)
- id_keys_before = os.path.exists(fuchsia_id_key_path)
- pub_keys_before = os.path.exists(fuchsia_pub_key_path)
- ssh_config_before = os.path.exists(ssh_config_path)
- ssh_dir_before = os.path.exists(_SSH_CONFIG_DIR)
- boot_data.ProvisionSSH()
- authorized_key_after = os.path.exists(fuchsia_authorized_keys_path)
- id_keys_after = os.path.exists(fuchsia_id_key_path)
- ssh_config_after = os.path.exists(ssh_config_path)
- if not authorized_key_before:
- os.remove(fuchsia_authorized_keys_path)
- if not id_keys_before:
- os.remove(fuchsia_id_key_path)
- if not pub_keys_before:
- os.remove(fuchsia_pub_key_path)
- if not ssh_config_before:
- os.remove(ssh_config_path)
- if not ssh_dir_before:
- os.rmdir(_SSH_CONFIG_DIR)
- self.assertTrue(os.path.exists(authorized_key_after))
- self.assertTrue(os.path.exists(id_keys_after))
- self.assertTrue(os.path.exists(ssh_config_after))
-
-
-if __name__ == '__main__':
- unittest.main()