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
2011-08-06gyp: fix test runnerRyan Dahl
2011-08-06Make test-child-process-exec-env work on windowsBert Belder
2011-08-05Revert commits 12c8b27 and 88f416a, fixed properly in 2fe4558.Ben Noordhuis
2011-08-04module: strip byte order marker when loading *.js and *.json filesBen Noordhuis
BOMs make V8 raise a 'SyntaxError: Unexpected token ILLEGAL' exception. Fixes #1440.
2011-08-04test: fix bad test in test-cli-eval.jsBen Noordhuis
The test checked that stdout was empty. Forgetting to escape brackets in the argument to --eval made that true on UNIX systems: the error was written to stderr. Props to Peter Bright for reporting the issue.
2011-08-03test: fix exec-after-fork race in test/simple/test-child-process-kill.jsBen Noordhuis
2011-08-02Update tests for http2.Mikeal Rogers
2011-08-02Partial fix for test-child-process.cwd on windowsBert Belder
2011-08-02win: fix test-child-process-exec-cwdRyan Dahl
2011-08-02win2k3: fix test-child-process-envRyan Dahl
2011-08-02child_process_uv: don't attempt to pass test-child-process-deprecated-apiRyan Dahl
2011-08-02fix test-child-process-env on windowsIgor Zinkovsky
2011-08-02Add a few more asserts to test/simple/test-child-process-stdin.jsRyan Dahl
2011-08-01windows: Fix test-module-load-listRyan Dahl
2011-08-01child_process_uv: add exec, fix simple/test-child-process-exec-cwdRyan Dahl
2011-08-01initial pass at lib/child_process_uv.jsRyan Dahl
2011-07-30Add %% escape to util.format()koichik
Fixes #1273.
2011-07-30add wrapper for uv_spawnRyan Dahl
process.binding('process_wrap')
2011-07-30util: add sprintf-like format() functionBen Noordhuis
Fixes #1407.
2011-07-30Add support for TLS SNIFedor Indutny
Fixes #1411
2011-07-29Revert "AMD compatibility for node"isaacs
This reverts commit 9967c369c9272335bb0343558673b689725c6d7c. Conflicts: test/simple/test-module-loading.js
2011-07-29Fix http.ClientRequest crashes if end() was called twicekoichik
Fixes #1417. Fixes #1223.
2011-07-28Fix test-module-load-list for use-uvRyan Dahl
2011-07-28Lazy load a few modulesRyan Dahl
2011-07-28Add process.moduleLoadList for better startup transparencyRyan Dahl
2011-07-27Fix crypto encryption/decryption with Base64.SAWADA Tadashi
Fixes #738. Fixes #1205.
2011-07-26Fix test-net-stream.jsFelix Geisendörfer
I broke this in 09ee293.
2011-07-26Emit 'close' after all connections have closedFelix Geisendörfer
Fixes #1383
2011-07-26cli: don't print result of --evalBen Noordhuis
Fixes #572.
2011-07-25Add Socket::bytesRead, Socket::bytesWrittenAlexander Uvarov
2011-07-24Fix crypto hmac to accept binary keys + add test cases from rfc 2202 and 4231Stefan Bühler
Fixes #324. Fixes #1027. Instead of converting buffers to strings and back again to char array directly use the buffer data in hmac_init (same as in hmac_update).
2011-07-24process: add process.features, remove process.useUVBen Noordhuis
Partially fixes #1385.
2011-07-23Add an optional length argument to Buffer.write()koichik
Fixes #243. Fixes #1361.
2011-07-23convert nonbuffer data to string in fs.writeFile/SyncDaniel Pihlström
Fixes #657.
2011-07-22Merge branch 'v0.4'Ryan Dahl
Conflicts: ChangeLog deps/v8/src/version.cc doc/index.html src/node_version.h test/simple/test-url.js wscript
2011-07-22net_uv: throw if Server.prototype.close() is called twiceBen Noordhuis
Follows net_legacy behaviour.
2011-07-22test: test pipe API with raw net.Stream() objectBen Noordhuis
Test case for #1379.
2011-07-22escape backslashes for windows pipe nameRyan Dahl
2011-07-21test: make test-http-unix-socket use common.PIPEBen Noordhuis
Don't unlink the socket, that's the responsibility of libuv and/or node.
2011-07-21test: add test-net-pingpong to `make test-uv` listBen Noordhuis
2011-07-21test: add common.PIPE, pipe name for testsBen Noordhuis
2011-07-21Add tests for process.nextTick bugs on windowsBert Belder
These are supposed to pass w/ libuv, so add them to the test-uv tests.
2011-07-21http: fix setting ServerResponse.statusCode in writeHeadTrent Mick
Fixes #1374.
2011-07-21test: added test/simple/test-fs-watch-file.jsYoshihiro Kikuchi
2011-07-21test: beef up checks in test-http-unix-socket.js, add to `make test-uv`Ben Noordhuis
2011-07-21Close #1357 Load json files with require()isaacs
Signed off by everybody.
2011-07-21url: throw descriptive error if url argument to parse() is not a stringBen Noordhuis
Fixes #568.
2011-07-19Close #1360 url: Allow _ in hostnames.isaacs
2011-07-19Close #1360 url: Allow _ in hostnames.isaacs
2011-07-19Properly respond to HEAD during end(body) hot pathReid Burke
During write(), _hasBody is checked to make sure a body is allowed -- this is now also checked during end(body) when write() isn't used. Concise final chunk for HEAD req's res.end(data). Instead of simply clearing data, check _hasBody earlier to avoid sending cruft when chunkedEncoding is used. Fixes #1291.