Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/chromium/build/fuchsia/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  boot_data_test.py   Sprache: Python

 
#!/usr/bin/env python3
# Copyright 2021 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.

import boot_data
import os
import unittest
from boot_data import _SSH_CONFIG_DIR, _SSH_DIR


class TestBootData(unittest.TestCase):
  def testProvisionSSHGeneratesFiles(self):
    fuchsia_authorized_keys_path = os.path.join(_SSH_DIR,
                                                'fuchsia_authorized_keys')
    fuchsia_id_key_path = os.path.join(_SSH_DIR, 'fuchsia_ed25519')
    pub_keys_path = os.path.join(_SSH_DIR, 'fuchsia_ed25519.pub')
    ssh_config_path = os.path.join(_SSH_CONFIG_DIR, 'ssh_config')
    # 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(pub_keys_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(pub_keys_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()

Messung V0.5
C=96 H=100 G=97

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.