templates.js 2.86 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
// Copyright 2014 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

new BenchmarkSuite('Untagged', [1000], [
  new Benchmark('Untagged-Simple', false, false, 0,
                Untagged, UntaggedSetup, UntaggedTearDown),
]);

new BenchmarkSuite('LargeUntagged', [1000], [
  new Benchmark('Untagged-Large', false, false, 0,
                UntaggedLarge, UntaggedLargeSetup, UntaggedLargeTearDown),
]);

new BenchmarkSuite('Tagged', [1000], [
  new Benchmark('TaggedRawSimple', false, false, 0,
                TaggedRaw, TaggedRawSetup, TaggedRawTearDown),
]);

var result;
var SUBJECT = 'Bob';
var TARGET = 'Mary';
var OBJECT = 'apple';

function UntaggedSetup() {
  result = undefined;
}

function Untagged() {
  result = `${SUBJECT} gives ${TARGET} an ${OBJECT}.`;
}

function UntaggedTearDown() {
  var expected = '' + SUBJECT + ' gives ' + TARGET + ' an ' + OBJECT + '.';
  return result === expected;
}


// ----------------------------------------------------------------------------

function UntaggedLargeSetup() {
  result = undefined;
}

function UntaggedLarge() {
  result = `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus
 aliquam, elit euismod vestibulum ${0}lacinia, arcu odio sagittis mauris, id
 blandit dolor felis pretium nisl. Maecenas porttitor, nunc ut accumsan mollis,
 arcu metus rutrum arcu, ${1}ut varius dolor lorem nec risus. Integer convallis
 tristique ante, non pretium ante suscipit at. Sed egestas massa enim, convallis
 fermentum neque vehicula ac. Donec imperdiet a tortor ac semper. Morbi accumsan
 quam nec erat viverra iaculis. ${2}Donec a scelerisque cras amet.`;
}

function UntaggedLargeTearDown() {
  var expected = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. " +
      "Vivamus\n aliquam, elit euismod vestibulum " + 0 + "lacinia, arcu odio" +
      " sagittis mauris, id\n blandit dolor felis pretium nisl. Maecenas " +
      "porttitor, nunc ut accumsan mollis,\n arcu metus rutrum arcu, " + 1 +
      "ut varius dolor lorem nec risus. Integer convallis\n tristique ante, " +
      "non pretium ante suscipit at. Sed egestas massa enim, convallis\n " +
      "fermentum neque vehicula ac. Donec imperdiet a tortor ac semper. Morbi" +
      " accumsan\n quam nec erat viverra iaculis. " + 2 + "Donec a " +
      "scelerisque cras amet.";
  return result === expected;
}


// ----------------------------------------------------------------------------


function TaggedRawSetup() {
  result = undefined;
}

function TaggedRaw() {
  result = String.raw `${SUBJECT} gives ${TARGET} an ${OBJECT} \ud83c\udf4f.`;
}

function TaggedRawTearDown() {
  var expected =
      '' + SUBJECT + ' gives ' + TARGET + ' an ' + OBJECT + ' \\ud83c\\udf4f.';
  return result === expected;
}


// ----------------------------------------------------------------------------