Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2012-02-01Merge remote-tracking branch 'ry/v0.6' into masterisaacs
Conflicts: ChangeLog deps/uv/src/unix/udp.c deps/uv/src/win/fs.c deps/uv/src/win/udp.c deps/uv/test/test-fs.c doc/index.html doc/logos/index.html doc/template.html src/node_version.h
2012-02-01test: dgram-{broadcast,multicast}-multi-process : prevent false failuresDan VerWeire
* check exit code of child processes * wait 1000 ms to exit the child process * prefix log messages with [PARENT] or [CHILD] to help debugging * kill all child processes before exiting Conflicts: test/simple/test-dgram-multicast-multi-process.js
2012-02-01child_process: do not disconnect on exit emitAndreas Madsen
When using isolate the .fork would break because it had no .disconnect method. This remove the exit handler there would call .disconnect since it was not required. It also change .disconnect to throw if the channel is closed, this was not possible before because .disconnect would be called twice.
2012-01-31Small test-dgram-multicast-multi-process fixesBert Belder
Somehow windows doesn't want to bind to 224.0.0.1. Let's test with a multicast address that has no special meaning.
2012-01-31Test for ChildProcess.disconnect()Andreas Madsen
2012-01-31fs: add O_EXCL support, exclusive open fileBen Noordhuis
2012-01-31fs, test: add file open mode testsBen Noordhuis
2012-01-31url: Support for IPv6 addresses in URLs.Łukasz Walukiewicz
Fixes #1138, #2610.
2012-01-30http: fix free http-parser too earlykoichik
when the status code is 100 (Continue). Fixes #2636.
2012-01-30timers: add v0.4 compatibility hackBen Noordhuis
If a timer callback throws and the user's uncaughtException handler ignores the exception, other timers that expire on the current tick should still run. If #2582 goes through, this hack should be removed. Fixes #2631.
2012-01-28stdout ending test message correctionisaacs
2012-01-27Fix #2507 Raise errors less agressively when destroying stdio streamsisaacs
Also, if an error is already provided, then raise the provided error, rather than throwing it with a less helpful 'stdout cannot be closed' message. This is important for properly handling EPIPEs.
2012-01-27test: handle unhandled dgram scenariosDan VerWeire
- watch for the death of child processes and fail the test if they all die - use setTimeout to fail the test if responses are not received and processed in 5000ms
2012-01-24dgram: bring back setTTL()Ben Noordhuis
2012-01-24dgram: bring back setMulticastLoopback()Ben Noordhuis
2012-01-24test: fix typos in error messagesBen Noordhuis
2012-01-24test: join multicast group *after* bindingBen Noordhuis
2012-01-24test: remove erroneous dropMembership() callBen Noordhuis
The socket is not part of any multicast group. Bug wasn't visible until 6999fb3.
2012-01-23Merge branch 'v0.6'Fedor Indutny
Conflicts: ChangeLog doc/template.html lib/cluster.js lib/http.js lib/tls.js src/node.h src/node_version.h test/simple/test-cluster-kill-workers.js
2012-01-22test: fix test/simple/test-net-server-max-connections.js is raceykoichik
Fixes #1333.
2012-01-22test: for #2109koichik
2012-01-22http: keep-alive should default with HTTP/1.1 serverkoichik
As RFC 2616 says we should, assume that servers will provide a persistent connection by default. > A significant difference between HTTP/1.1 and earlier versions of > HTTP is that persistent connections are the default behavior of any > HTTP connection. That is, unless otherwise indicated, the client > SHOULD assume that the server will maintain a persistent connection, > even after error responses from the server. > HTTP/1.1 applications that do not support persistent connections MUST > include the "close" connection option in every message. Fixes #2436.
2012-01-21path fs: move `path.exists*` to `fs.exists*`Maciej Małecki
`path.exists*` functions show a deprecation warning and call functions from `fs`. They should be removed later. test: fix references to `path.exists*` in tests test fs: add test for `fs.exists` and `fs.existsSync` doc: reflect moving `path.exists*` to `fs`
2012-01-21dgram: reintroduce setMulticastTTL()Dan VerWeire
Removed during the early stages of node 0.5 refactoring to libuv.
2012-01-21dgram: reintroduce setBroadcast()Dan VerWeire
Removed during the early stages of node 0.5 refactoring to libuv.
2012-01-21dgram: reintroduce addMembership() and dropMembership()Roman Shtylman
Removed during the early stages of node 0.5 refactoring to libuv.
2012-01-21ref isolate loopIgor Zinkovsky
2012-01-21http: reduce creating http-parser instanceskoichik
Fixes #2577.
2012-01-21Fix #2365 zlib crashing on invalid inputNicolas LaCasse
Fix zlib crashes on error due to improper use of removeListener in the error handler
2012-01-21Add cluster.setupMasterAndreas Madsen
Fixes #2470
2012-01-19Crypto: adding ability to turn off automatic PKCS paddingIngmar Runge
2012-01-18Make path.extname do the right thing when the last path component is . or ..Bert Belder
Closes GH-2526
2012-01-18cluster: don't always kill the master on uncaughtExceptionBen Noordhuis
uncaughtException handlers installed by the user override the default one that the cluster module installs, the one that kills off the master process. Fixes #2556.
2012-01-17Add failing test case: parent on('exit')Andreas Madsen
Fixes #2564
2012-01-17tests: fix more lint issuesBert Belder
2012-01-17Tests: fix jslint issuesAndreas Madsen
2012-01-17tls: fix double 'error' events on HTTPS Requestskoichik
Fixes #2549.
2012-01-17typed arrays: set class nameBen Noordhuis
Make obj.toString and Object.prototype.toString work correctly for typed arrays.
2012-01-17Merge remote branch 'origin/v0.6'Ryan Dahl
Conflicts: deps/uv/src/win/util.c src/udp_wrap.cc
2012-01-16querystring: fix maxKeys = 0 is ignoredFedor Indutny
2012-01-16http: do not accept headers if limit is exceededFedor Indutny
* fix limiting when parser was reused * fix maxHeadersCount = 0 is ignored ( credit to @koichik ) * add test-http-max-headers-count.js ( credit to @koichik )
2012-01-16http, querystring: added limits to prevent DoSFedor Indutny
2012-01-14test-eio-limit: add missing copyright headersFedor Indutny
2012-01-14Add failing test-eio-limit.jsFedor Indutny
2012-01-14net: make .write() throw on bad inputBen Noordhuis
Passing a non-buffer or non-string argument to Socket.prototype.write triggered an assert: Assertion failed: (Buffer::HasInstance(args[0])), function Write, file ../src/stream_wrap.cc, line 289. Fixes #2532.
2012-01-12http: Upgrade/CONNECT request should detach its socket earlierkoichik
With Upgrade or CONNECT request, http.ClientRequest emits 'close' event after its socket is closed. However, after receiving a response, the socket is not under management by the request. http.ClientRequest should detach the socket before 'upgrade'/'connect' event is emitted to pass the socket to a user. After that, it should emit 'close' event immediately without waiting for closing of the socket. Fixes #2510.
2012-01-12zlib: reset() method for deflate/inflate streamsFedor Indutny
* ammended test-zlib-dictionary to cover reusing streams
2012-01-11child_process: fix typo in internal message event nameAndreas Madsen
2012-01-11Add broken test-isolates3.jsRyan Dahl
2012-01-10Add failing test-isolates2.jsRyan Dahl