node/test
Benjamin Gruenbaum c9c387fdac dns: Use object without protoype for map
Currently we use `{}` for the `lookup` function to find the relevant
resolver to the dns.resolve function. It is preferable to use an
object without a Object.prototype, currently for example you can do
something like:

```js
dns.resolve("google.com", "toString", console.log);
```

And get `[Object undefined]` logged and the callback would never be
called. This is unexpected and strange behavior in my opinion.
In addition, if someone adds a property to `Object.prototype` might
also create unexpected results.

This pull request fixes it, with it an appropriate error is thrown.

PR-URL: https://github.com/nodejs/node/pull/5843
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2016-03-22 11:13:03 -07:00
..
abort
addons test: add buffer alignment regression tests 2016-03-19 07:08:08 -07:00
cctest
debugger test: remove broken debugger scenarios 2016-03-07 11:20:43 -08:00
disabled buffer: add .from(), .alloc() and .allocUnsafe() 2016-03-16 08:34:02 -07:00
fixtures test: strip non-free icc profile from person.jpg 2016-03-21 23:20:43 -07:00
gc tools: lint for spacing around unary operators 2016-02-04 10:56:17 -08:00
internet buffer: add .from(), .alloc() and .allocUnsafe() 2016-03-16 08:34:02 -07:00
known_issues test: add batch of known issue tests 2016-03-12 09:56:29 -05:00
message timers: give Timeouts a constructor name 2016-03-21 11:21:53 -04:00
parallel dns: Use object without protoype for map 2016-03-22 11:13:03 -07:00
pummel lib: simplify code with String.prototype.repeat() 2016-03-21 16:42:58 -07:00
sequential buffer: add .from(), .alloc() and .allocUnsafe() 2016-03-16 08:34:02 -07:00
testpy
timers test: fix test-timers.reliability on OS X 2016-02-24 21:24:33 -08:00
.eslintrc
common.js test: apply Linux workaround to Linux only 2016-03-01 15:21:05 -08:00
README.md doc: document directories in test directory 2016-03-07 13:10:43 -08:00

Tests

abort

Tests for when the --abort-on-uncaught-exception flag is used.

Runs on CI
No

addons

Tests for addon functionality.

Runs on CI
Yes

cctest

C++ test that is run as part of the build process.

Runs on CI
Yes

debugger

Tests for debugger functionality.

Runs on CI
No

disabled

Tests that have been disabled from running for various reasons.

Runs on CI
No

fixtures

Test fixtures used in various tests throughout the test suite.

gc

Tests for garbage collection related functionality.

Runs on CI
No

internet

Tests that make real outbound connections (mainly networking related modules). Tests for networking related modules may also be present in other directories, but those tests do not make outbound connections.

Runs on CI
No

known_issues

Tests reproducing known issues within the system.

Runs on CI
No

message

Tests for messages that are output for various conditions (console.log, error messages etc.)

Runs on CI
Yes

parallel

Various tests that are able to be run in parallel.

Runs on CI
Yes

pummel

Various tests for various modules / system functionality operating under load.

Runs on CI
No

sequential

Various tests that are run sequentially.

Runs on CI
Yes

testpy

Test configuration utility used by various test suites.

timers

Tests for timing utilities (setTimeout and setInterval).

Runs on CI
No