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


Quelle  testDeleteProperty.cpp   Sprache: C

 
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
 * vim: set ts=8 sts=2 et sw=2 tw=80:
 */

/* 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 "js/Id.h"
#include "js/PropertyAndElement.h"
#include "jsapi-tests/tests.h"

BEGIN_TEST(testDeleteProperty) {
  JS::RootedValue val(cx);
  EVAL("var obj = {a: 1, b: 2, c: 3, d: 4, e: 5, f: 6, g: 7, h: 8}; obj", &val);
  CHECK(val.isObject());
  JS::RootedObject obj(cx, &val.toObject());

  JS::Rooted<JS::PropertyKey> key(cx);

  auto createPropertyKey = [](JSContext* cx, const char* s,
                              JS::MutableHandle<JS::PropertyKey> key) {
    JSString* atom = JS_AtomizeString(cx, s);
    if (!atom) {
      return false;
    }
    key.set(JS::PropertyKey::NonIntAtom(atom));
    return true;
  };

  // Test delete APIs without an ObjectOpResult argument.
  CHECK(JS_DeleteProperty(cx, obj, "b"));
  CHECK(createPropertyKey(cx, "d", &key));
  CHECK(JS_DeletePropertyById(cx, obj, key));

  // Test delete APIs with an ObjectOpResult argument.
  JS::ObjectOpResult result;
  CHECK(JS_DeleteProperty(cx, obj, "e", result));
  CHECK(result);
  CHECK(createPropertyKey(cx, "f", &key));
  CHECK(JS_DeletePropertyById(cx, obj, key, result));
  CHECK(result);

  // Check properties were deleted.
  EVAL("JSON.stringify(obj)", &val);
  CHECK(val.isString());
  bool match = false;
  CHECK(JS_StringEqualsAscii(cx, val.toString(),
                             "{\"a\":1,\"c\":3,\"g\":7,\"h\":8}", &match));
  CHECK(match);

  return true;
}
END_TEST(testDeleteProperty)

100%


¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet)  ¤

*© 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 ist noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge