Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/jsapi-tests/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  testSourcePolicy.cpp

  Sprache: C
 

/* 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/. */


#include "mozilla/Utf8.h"  // mozilla::Utf8Unit

#include "js/CompilationAndEvaluation.h"  // JS::CompileFunction, JS::Evaluate
#include "js/EnvironmentChain.h"          // JS::EnvironmentChain
#include "js/GlobalObject.h"              // JS_NewGlobalObject
#include "js/MemoryFunctions.h"
#include "js/SourceText.h"  // JS::Source{Ownership,Text}
#include "jsapi-tests/tests.h"
#include "vm/JSScript.h"

BEGIN_TEST(testBug795104) {
  JS::RealmOptions options;
  options.behaviors().setDiscardSource(true);

  JS::RootedObject g(cx, JS_NewGlobalObject(cx, getGlobalClass(), nullptr,
                                            JS::FireOnNewGlobalHook, options));
  CHECK(g);

  JSAutoRealm ar(cx, g);

  const size_t strLen = 60002;
  char* s = static_cast<char*>(JS_malloc(cx, strLen));
  CHECK(s);

  s[0] = '"';
  memset(s + 1'x', strLen - 2);
  s[strLen - 1] = '"';

  JS::SourceText<mozilla::Utf8Unit> srcBuf;
  CHECK(srcBuf.init(cx, s, strLen, JS::SourceOwnership::Borrowed));

  JS::CompileOptions opts(cx);

  // We don't want an rval for our JS::Evaluate call
  opts.setNoScriptRval(true);

  JS::RootedValue unused(cx);
  CHECK(JS::Evaluate(cx, opts, srcBuf, &unused));

  JS::RootedFunction fun(cx);
  JS::EnvironmentChain emptyEnvChain(cx, JS::SupportUnscopables::No);

  // But when compiling a function we don't want to use no-rval
  // mode, since it's not supported for functions.
  opts.setNoScriptRval(false);

  fun = JS::CompileFunction(cx, emptyEnvChain, opts, "f"0, nullptr, srcBuf);
  CHECK(fun);

  JS_free(cx, s);

  return true;
}
END_TEST(testBug795104)

Messung V0.5 in Prozent
C=90 H=95 G=92

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-10) ¤

*© 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.