Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/dom/payments/test/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 3 kB image not shown  

Quelle  head.js   Sprache: JAVA

 
const kTestRoot = getRootDirectory(gTestPath).replace(
  "chrome://mochitests/content",
  "https://example.com"
);

function checkSimplePayment(aSimplePayment) {
  // checking the passed PaymentMethods parameter
  is(
    aSimplePayment.paymentMethods.length,
    1,
    "paymentMethods' length should be 1."
  );

  const methodData = aSimplePayment.paymentMethods.queryElementAt(
    0,
    Ci.nsIPaymentMethodData
  );
  ok(methodData, "Fail to get payment methodData.");
  is(
    methodData.supportedMethods,
    "basic-card",
    "supported method should be 'basic-card'."
  );
  ok(!methodData.data, "methodData.data should not exist.");

  // checking the passed PaymentDetails parameter
  const details = aSimplePayment.paymentDetails;
  is(details.id, "simple details""details.id should be 'simple details'.");
  is(
    details.totalItem.label,
    "Donation",
    "total item's label should be 'Donation'."
  );
  is(
    details.totalItem.amount.currency,
    "USD",
    "total item's currency should be 'USD'."
  );
  is(
    details.totalItem.amount.value,
    "55.00",
    "total item's value should be '55.00'."
  );

  is(
    details.displayItems.length,
    0,
    "details.displayItems should be a zero length array."
  );
  is(
    details.modifiers.length,
    0,
    "details.modifiers should be a zero length array."
  );
  is(
    details.shippingOptions.length,
    0,
    "details.shippingOptions should be a zero length array."
  );

  // checking the default generated PaymentOptions parameter
  const paymentOptions = aSimplePayment.paymentOptions;
  ok(!paymentOptions.requestPayerName, "payerName option should be false");
  ok(!paymentOptions.requestPayerEmail, "payerEmail option should be false");
  ok(!paymentOptions.requestPayerPhone, "payerPhone option should be false");
  ok(!paymentOptions.requestShipping, "requestShipping option should be false");
  is(
    paymentOptions.shippingType,
    "shipping",
    "shippingType option should be 'shipping'"
  );
}

function checkDupShippingOptionsPayment(aPayment) {
  // checking the passed PaymentMethods parameter
  is(aPayment.paymentMethods.length, 1, "paymentMethods' length should be 1.");

  const methodData = aPayment.paymentMethods.queryElementAt(
    0,
    Ci.nsIPaymentMethodData
  );
  ok(methodData, "Fail to get payment methodData.");
  is(
    methodData.supportedMethods,
    "basic-card",
    "methodData.supportedMethod name should be 'basic-card'."
  );
  ok(!methodData.data, "methodData.data should not exist.");

  // checking the passed PaymentDetails parameter
  const details = aPayment.paymentDetails;
  is(
    details.id,
    "duplicate shipping options details",
    "details.id should be 'duplicate shipping options details'."
  );
  is(
    details.totalItem.label,
    "Donation",
    "total item's label should be 'Donation'."
  );
  is(
    details.totalItem.amount.currency,
    "USD",
    "total item's currency should be 'USD'."
  );
  is(
    details.totalItem.amount.value,
    "55.00",
    "total item's value should be '55.00'."
  );

  const shippingOptions = details.shippingOptions;
  is(shippingOptions.length, 0, "shippingOptions' length should be 0.");

  // checking the passed PaymentOptions parameter
  const paymentOptions = aPayment.paymentOptions;
  ok(paymentOptions.requestPayerName, "payerName option should be true");
  ok(paymentOptions.requestPayerEmail, "payerEmail option should be true");
  ok(paymentOptions.requestPayerPhone, "payerPhone option should be true");
  ok(paymentOptions.requestShipping, "requestShipping option should be true");
  is(
    paymentOptions.shippingType,
    "shipping",
    "shippingType option should be 'shipping'"
  );
}

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

¤ Dauer der Verarbeitung: 0.11 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 und die Messung sind noch experimentell.