assert.js 11.9 KB
Newer Older
Kriengkrai Yothee's avatar
Kriengkrai Yothee committed
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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at
//
//   http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied.  See the License for the
// specific language governing permissions and limitations
// under the License.

/**
 * @fileoverview Defines a library that simplifies writing assertions against
 * promised values.
 *
 * > <hr>
 * > __NOTE:__ This module is considered experimental and is subject to
 * > change, or removal, at any time!
 * > <hr>
 *
 * Sample usage:
 *
 *     var driver = new webdriver.Builder().build();
 *     driver.get('http://www.google.com');
 *
 *     assert(driver.getTitle()).equalTo('Google');
 */

'use strict';

const assert = require('assert');

function trueType(v) {
  if (v === null) {
    return 'null';
  }

  let type = typeof v;
  if (type === 'object') {
    if (Array.isArray(v)) {
      type = 'array';
    }
  }
  return type;
}


function checkType(v, want) {
  let got = trueType(v);
  if (got !== want) {
    throw new TypeError('require ' + want + ', but got ' + got);
  }
  return v;
}

const checkNumber = v => checkType(v, 'number');
const checkFunction = v => checkType(v, 'function');
const checkString = v => checkType(v, 'string');

const isFunction = v => trueType(v) === 'function';
const isNumber = v => trueType(v) === 'number';
const isObject = v => trueType(v) === 'object';
const isString = v => trueType(v) === 'string';


function describe(value) {
  let ret;
  try {
    ret = `<${String(value)}>`;
  } catch (e) {
    ret = `<toString failed: ${e.message}>`;
  }

  if (null !== value && void(0) !== value) {
    ret += ` (${trueType(value)})`;
  }

  return ret;
}


function evaluate(value, predicate) {
  if (isObject(value) && isFunction(value.then)) {
    return value.then(predicate);
  }
  predicate(value);
}


/**
 * @private
 */
class Assertion {
  /**
   * @param {?} subject The subject of this assertion.
   * @param {boolean=} opt_invert Whether to invert any assertions performed by
   *     this instance.
   */
  constructor(subject, opt_invert) {
    /** @private {?} */
    this.subject_ = subject;
    /** @private {boolean} */
    this.invert_ = !!opt_invert;
  }

  /**
   * @param {number} expected The minimum permissible value (inclusive).
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  atLeast(expected, opt_message) {
    checkNumber(expected);
    return evaluate(this.subject_, function(actual) {
      if (!isNumber(actual) || actual < expected) {
        assert.fail(actual, expected, opt_message, '>=');
      }
    });
  }

  /**
   * @param {number} expected The maximum permissible value (inclusive).
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  atMost(expected, opt_message) {
    checkNumber(expected);
    return evaluate(this.subject_, function (actual) {
      if (!isNumber(actual) || actual > expected) {
        assert.fail(actual, expected, opt_message, '<=');
      }
    });
  }

  /**
   * @param {number} expected The maximum permissible value (exclusive).
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  greaterThan(expected, opt_message) {
    checkNumber(expected);
    return evaluate(this.subject_, function(actual) {
      if (!isNumber(actual) || actual <= expected) {
        assert.fail(actual, expected, opt_message, '>');
      }
    });
  }

  /**
   * @param {number} expected The minimum permissible value (exclusive).
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  lessThan(expected, opt_message) {
    checkNumber(expected);
    return evaluate(this.subject_,  function (actual) {
      if (!isNumber(actual) || actual >= expected) {
        assert.fail(actual, expected, opt_message, '<');
      }
    });
  }

  /**
   * @param {number} expected The desired value.
   * @param {number} epsilon The maximum distance from the desired value.
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  closeTo(expected, epsilon, opt_message) {
    checkNumber(expected);
    checkNumber(epsilon);
    return evaluate(this.subject_, function(actual) {
      checkNumber(actual);
      if (Math.abs(expected - actual) > epsilon) {
        assert.fail(opt_message || `${actual} === ${expected}${epsilon})`);
      }
    });
  }

  /**
   * @param {function(new: ?)} ctor The exptected type's constructor.
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  instanceOf(ctor, opt_message) {
    checkFunction(ctor);
    return evaluate(this.subject_, function(actual) {
      if (!(actual instanceof ctor)) {
        assert.fail(
            opt_message
                || `${describe(actual)} instanceof ${ctor.name || ctor}`);
      }
    });
  }

  /**
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  isNull(opt_message) {
    return this.isEqualTo(null);
  }

  /**
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  isUndefined(opt_message) {
    return this.isEqualTo(void(0));
  }

  /**
   * Ensures the subject of this assertion is either a string or array
   * containing the given `value`.
   *
   * @param {?} value The value expected to be contained within the subject.
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  contains(value, opt_message) {
    return evaluate(this.subject_, function(actual) {
      if (actual instanceof Map || actual instanceof Set) {
        assert.ok(actual.has(value), opt_message || `${actual}.has(${value})`);
      } else if (Array.isArray(actual) || isString(actual)) {
        assert.ok(
            actual.indexOf(value) !== -1,
            opt_message || `${actual}.indexOf(${value}) !== -1`);
      } else {
        assert.fail(
            `Expected an array, map, set, or string: got ${describe(actual)}`);
      }
    });
  }

  /**
   * @param {string} str The expected suffix.
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  endsWith(str, opt_message) {
    checkString(str);
    return evaluate(this.subject_, function(actual) {
      if (!isString(actual) || !actual.endsWith(str)) {
        assert.fail(actual, str, 'ends with');
      }
    });
  }

  /**
   * @param {string} str The expected prefix.
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  startsWith(str, opt_message) {
    checkString(str);
    return evaluate(this.subject_, function(actual) {
      if (!isString(actual) || !actual.startsWith(str)) {
        assert.fail(actual, str, 'starts with');
      }
    });
  }

  /**
   * @param {!RegExp} regex The regex the subject is expected to match.
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  matches(regex, opt_message) {
    if (!(regex instanceof RegExp)) {
      throw TypeError(`Not a RegExp: ${describe(regex)}`);
    }
    return evaluate(this.subject_, function(actual) {
      if (!isString(actual) || !regex.test(actual)) {
        let message = opt_message
            || `Expected a string matching ${regex}, got ${describe(actual)}`;
        assert.fail(actual, regex, message);
      }
    });
  }

  /**
   * @param {?} value The unexpected value.
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  notEqualTo(value, opt_message) {
    return evaluate(this.subject_, function(actual) {
      assert.notStrictEqual(actual, value, opt_message);
    });
  }

  /** An alias for {@link #isEqualTo}. */
  equalTo(value, opt_message) {
    return this.isEqualTo(value, opt_message);
  }

  /** An alias for {@link #isEqualTo}. */
  equals(value, opt_message) {
    return this.isEqualTo(value, opt_message);
  }

  /**
   * @param {?} value The expected value.
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  isEqualTo(value, opt_message) {
    return evaluate(this.subject_, function(actual) {
      assert.strictEqual(actual, value, opt_message);
    });
  }

  /**
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  isTrue(opt_message) {
    return this.isEqualTo(true, opt_message);
  }

  /**
   * @param {string=} opt_message An optional failure message.
   * @return {(Promise|undefined)} The result of this assertion, if the subject
   *     is a promised-value. Otherwise, the assertion is performed immediately
   *     and nothing is returned.
   */
  isFalse(opt_message) {
    return this.isEqualTo(false, opt_message);
  }
}


// PUBLIC API


/**
 * Creates an assertion about the given `value`.
 * @return {!Assertion} the new assertion.
 */
module.exports = function assertThat(value) {
  return new Assertion(value);
};
module.exports.Assertion = Assertion;  // Exported to help generated docs