Aaron Heckmann
f8eb163728
Add removeAllListeners
15 years ago
isaacs
5861db8a69
Remove process.mixin dependency from all tests.
15 years ago
Ryan Dahl
c9c13e0718
require('fs') in test-http-tls
15 years ago
Felix Geisendörfer
44dde5f24c
Remove fs/path globals from test suite
It is way too easy to not notice bugs due to those modules being
exported as globals while running the test suite.
See: http://github.com/ry/node/issues#issue/75
15 years ago
Felix Geisendörfer
9a9f08b1bc
Add callbacks to stream methods
Allows for more fine graining, especially finding out about an individual
chunk of data being flushed in a write stream rather than the whole queue.
This commit also fixes a bug causing forceClose to fail on a readStream that
did not finish opening yet.
15 years ago
Rasmus Andersson
374300ca8d
Updated patch of node.cc for supporting reading of umask
15 years ago
Ryan Dahl
b9cd3363ef
Bugfix in querystring
15 years ago
Rob Ellis
5c78c45fa3
Added Parse INI to Node, tests
15 years ago
Felix Geisendörfer
0fcc94525a
Renamed fileReadStream -> createReadStream
Did the same for fileWriteStream as well.
15 years ago
Felix Geisendörfer
48562fa938
Updated file streams
Read streams now only support forceClose()
Write streams support close() and forceClose()
15 years ago
Felix Geisendörfer
f6e00759ef
Initial read stream implementation
15 years ago
Ryan Dahl
769a35024f
Allow passing env to child process
15 years ago
Rasmus Andersson
5c602b750a
Rewrote realpath implementation solving all known failing tests (also added a bunch of new test cases)
15 years ago
Felix Geisendörfer
61785afb3d
Initial write stream implementation
15 years ago
Rasmus Andersson
20d5963fae
Added fs.realpath and fs.realpathSync (pure javascript versions)
15 years ago
Felix Geisendörfer
55ab9b4541
Bug fix for deep process.mixin array handling
process.mixin was throwing an exception when trying to do a deep copy
of an object that included an array.
This bug was introduced in: 3bb7ad6fea
15 years ago
Benjamin Thomas
6034701f57
Stop sys.inspect from adding extra new lines for deep objects that are elements in an array.
A couple other small fixes:
If the keys of an object were all numeric they should be quoted. This
way, you can now hypothetically copy and paste the output into your code
(if the object doesn't contain any circular objects, deeply nested
objects, Dates, RegExps or functions. I think).
If a nested object isn't being recursed into, output "[Object]" as
opposed to "[object Object]".
If an object is longer than the max width but it is one line no matter
what, then don't put the closing brace on a new line.
Fix some formatting issues to try and match Node's style guidelines.
15 years ago
arlolra
724ccf10df
Tests on common port.
15 years ago
Ryan Dahl
71d237e6a0
Move net2 tests into test/simple
15 years ago
arlolra
3497da370b
Decoupled readdir test.
15 years ago
Benjamin Thomas
de1521413e
Make the output of sys.inspect a lot more compact.
See:
http://groups.google.com/group/nodejs/browse_thread/thread/ac060521e27fef65
By default now, sys.inspect doesn't recurse more than two times. Pass
in null as the third parameter to make it recurse indefinitely.
15 years ago
Benjamin Thomas
a2714be8b5
Add optional third argument sys.inpect to indicate how many times you want it to recurse
15 years ago
Benjamin Thomas
b1b84960ce
Rename writeHeader to writeHead
15 years ago
arlolra
04fac19822
Split tests.
15 years ago