summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/S9.9_A5.js
blob: 5f130f03ed40f63aeed0c92864f501cf6aa2f067 (plain)
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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: |
    ToObject conversion from String: create a new String object
    whose [[value]] property is set to the value of the string
es5id: 9.9_A5
description: Converting from various strings to Object
---*/
assert.sameValue(
  Object("some string").valueOf(),
  "some string",
  'Object("some string").valueOf() must return "some string"'
);

assert.sameValue(
  typeof Object("some string"),
  "object",
  'The value of `typeof Object("some string")` is expected to be "object"'
);

assert.sameValue(
  Object("some string").constructor.prototype,
  String.prototype,
  'The value of Object("some string").constructor.prototype is expected to equal the value of String.prototype'
);

assert.sameValue(Object("").valueOf(), "", 'Object("").valueOf() must return ""');
assert.sameValue(typeof Object(""), "object", 'The value of `typeof Object("")` is expected to be "object"');

assert.sameValue(
  Object("").constructor.prototype,
  String.prototype,
  'The value of Object("").constructor.prototype is expected to equal the value of String.prototype'
);

assert.sameValue(Object("\r\t\b\n\v\f").valueOf(), "\r\t\b\n\v\f", 'Object("rtbnvf").valueOf() must return "rtbnvf"');

assert.sameValue(
  typeof Object("\r\t\b\n\v\f"),
  "object",
  'The value of `typeof Object("rtbnvf")` is expected to be "object"'
);

assert.sameValue(
  Object("\r\t\b\n\v\f").constructor.prototype,
  String.prototype,
  'The value of Object("rtbnvf").constructor.prototype is expected to equal the value of String.prototype'
);

assert.sameValue(Object(String(10)).valueOf(), "10", 'Object(String(10)).valueOf() must return "10"');

assert.sameValue(
  typeof Object(String(10)),
  "object",
  'The value of `typeof Object(String(10))` is expected to be "object"'
);

assert.sameValue(
  Object(String(10)).constructor.prototype,
  String.prototype,
  'The value of Object(String(10)).constructor.prototype is expected to equal the value of String.prototype'
);

reportCompare(0, 0);