Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  test_chrome_trace.py

  Sprache: Python
 

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import os
import shutil
import sys
import tarfile
import tempfile
from unittest.mock import patch

import mozunit

# need this so raptor imports work both from /raptor and via mach
here = os.path.abspath(os.path.dirname(__file__))

raptor_dir = os.path.join(os.path.dirname(here), "raptor")
sys.path.insert(0, raptor_dir)

from chrome_trace import ChromeTrace


@patch("logger.logger.RaptorLogger.info")
@patch("logger.logger.RaptorLogger.critical")
def test_browsertime_trace_collection(mock_log_info, mock_log_critical):
    """Test the ability to collect existing trace files into a zip archive
    for viewing in the firefox profiler
    """
    result_dir = tempfile.mkdtemp()
    # untar chrome trace tar file, which contains a chimera run of wikipedia
    with tarfile.open(os.path.join(here, "chromeTraceTest.tar")) as f:
        f.extractall(path=result_dir)

    # Makes sure we can run the profile process against a browsertime-generated
    # trace (trace-1.json in this test dir)
    upload_dir = tempfile.mkdtemp()
    raptor_config = {
        "browsertime"True,
        "browsertime_result_dir": os.path.join(result_dir, "wikipedia"),
        "extra_profiler_run"True,
        "chimera"True,
    }
    test_config = {"name""tp6""type""pageload"}
    try:
        profile = ChromeTrace(upload_dir, raptor_config, test_config)
        assert (
            len(profile.collect_profiles()) == 2
        ), "We have two profiles for a cold & warm run"
        profile.output_trace()
        profile.clean()
        arcname = os.environ["RAPTOR_LATEST_GECKO_PROFILE_ARCHIVE"]
        assert os.stat(arcname).st_size > 900000"We got a ~0.9mb+ zip"
    except:
        assert False"Failed to collect Traces"
        raise
    finally:
        shutil.rmtree(upload_dir)
        shutil.rmtree(result_dir)


if __name__ == "__main__":
    mozunit.main()

Messung V0.5 in Prozent
C=87 H=100 G=93

¤ Dauer der Verarbeitung: 0.18 Sekunden  (vorverarbeitet am  2026-06-05) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

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.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik