1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-29 09:34:03 +08:00

2545 Commits

Author SHA1 Message Date
f25dfb68b9 peer/queue: close fix, and logging 2015-01-05 04:55:02 -08:00
09a2e1f64c testutil: obvious names for seeded key pairs 2015-01-05 04:55:02 -08:00
10072c149d bitswap: log superfluous messages 2015-01-05 04:55:02 -08:00
aeb2e07198 bitswap: remove DialPeer from interface
Bitswap doesn't usually care about dialing. the underlying
network adapter can make sure of that.
2015-01-05 04:55:02 -08:00
f6def11eb3 make test now runs expensive tests.
We use make test as the measure of correctness.
This laxity has let bugs creep into several systems.
This commit changes our target to always run expensive
tests, unless one specifically runs `make test_short`

(we would do well to remove most if not all timing--
that's usually what makes tests take a long time.)
2015-01-05 04:55:02 -08:00
032b35b2ac dht: key without record validator func
This is causing test failures because tests don't usually
have "/-/-" format. we can decide whether or not to allow
keys without validators, but for now removing.

cc @whyrusleeping
2015-01-05 04:55:01 -08:00
9d0736bc3b peer+mocknet: sorting for determinism. 2015-01-05 04:55:01 -08:00
ce367ee76e ext_test: bitten by mocknet ordering
mocknet indeterminism screwed this test up. that's twice
it's bitten us. let's not let it do it a third time.

cc @briantigerchow omg.
2015-01-05 04:55:01 -08:00
b4be7c5986 dht: extend duration of TestGetFailures
TestGetFailures may just be operating very slowly, instead
of completely failing. Right now it gets caught on travis
often. not sure if its actually wrong.
2015-01-05 00:16:54 -08:00
b599e28b88 core/mock: use mock routing
this fixes a failing ipns test which didnt have
a "working" routing system
2015-01-05 00:16:53 -08:00
a8127a28e1 fix: force clean test results directory
Without `-f`, `make clean` fails on machines that don't have the dir.

cc @jbenet
2015-01-05 00:16:53 -08:00
05d8c80c39 fix(bitswap/network): return when context is done
@jbenet @whyrusleeping

This bug (missing return) could tie up the client worker and cause
operations to come to a halt.
2015-01-05 00:16:53 -08:00
64cb32dadd disable utp
utp is BROKEN!! it causes tests to fail.
2015-01-05 00:16:53 -08:00
9c6228d18f bitswap and dht: lots of debugging logs 2015-01-05 00:16:53 -08:00
bb8886f3af merkledag: LONG timeout on Get
we shouldn't use an arbitrary timeout here. since Get
doesnt take in a context yet, we give a large upper bound.
think of an http request. we want it to go on as long as
the client requests it.
2015-01-05 00:16:53 -08:00
71ada4696f bitswap net: always close 2015-01-05 00:16:53 -08:00
d357b0ac00 bitswap debug logging 2015-01-05 00:16:53 -08:00
c100390a49 bitswap engine: signal in own func 2015-01-05 00:16:52 -08:00
623625845d prefix logger
this commit adds a logger with prefixes
2015-01-05 00:16:52 -08:00
5639042df5 bitswap: send wantlist code reuse + debug logs 2015-01-05 00:16:52 -08:00
7629ad7ec7 bitswap: add self peer.ID 2015-01-05 00:16:52 -08:00
17ce192af5 dht: some provider debug logging 2015-01-05 00:16:52 -08:00
3b6350331f dht: debug dont cast Key as peer.ID 2015-01-05 00:16:52 -08:00
e3223a073e dockertest: logging niceness 2015-01-05 00:16:52 -08:00
0b0ca40863 Merge pull request #480 from jbenet/fix/sharness-init
fix sharness test for ipfs init output
2015-01-05 00:14:46 -08:00
c47b808d77 sharness/init: fixed ipfs init output 2015-01-05 00:09:49 -08:00
b241c8048f fix sharness test for ipfs init output 2015-01-05 00:02:56 -08:00
02eb6ac2c1 Merge pull request #493 from jbenet/sharness-verbose
sharness: verbose output
2015-01-04 23:02:15 -08:00
e407c2ef83 sharness: override test_cmp for verbose 2015-01-04 22:53:21 -08:00
acf4759758 travis: enable verbose sharness output 2015-01-04 22:37:30 -08:00
481c19ac23 sharness: note in makefile describing TEST_VERBOSE 2015-01-04 22:30:59 -08:00
3510a8278c makefile fix: order of env vars 2015-01-04 22:29:11 -08:00
e5f24dc26b sharness: expanded on readme 2015-01-04 22:22:45 -08:00
be4191d800 sharness: nice verbose ouput
Make sharness tests' output helpful when verbose.
This means cating certain files, or running diagnostic
commands. I used a construction like:

    test_expect_success ".go-ipfs/ has been created" '
      test -d ".go-ipfs" &&
      test -f ".go-ipfs/config" &&
      test -d ".go-ipfs/datastore" ||
      fsh ls -al .go-ipfs
    '

The `|| ...` is a diagnostic run when the preceding command
fails. `fsh` is a trivial script that echoes the args, runs
the cmd, and then also fails, making sure the test case fails.
(wouldnt want the diagnostic accidentally returning true and
making it _seem_ like the test case succeeded).
2015-01-04 22:22:33 -08:00
d06e7e342d sharness: set verbosity from env 2015-01-04 20:39:23 -08:00
6ccbba2bdc Merge pull request #487 from jbenet/mount-fix
mount fixes
2015-01-04 01:28:27 -08:00
cf62f63b58 better daemon + main exit semantics 2015-01-04 00:47:27 -08:00
e21b1f662b fuse mount lifecycle fixes
This commit cleans up how mounting was being done.
It now successfully signals when it is properly mounted
and listen to close signals correctly.
2015-01-04 00:47:27 -08:00
1fa14335b9 core: rearranged initialization a bit 2015-01-04 00:47:27 -08:00
56867c8b70 updated bazil.org/fuse 2015-01-04 00:47:26 -08:00
12549ca8f9 Merge pull request #478 from jbenet/relay
Stream relaying
2015-01-04 00:46:39 -08:00
85e3024731 vendor identify pb
not sure how it wasnt an error
2015-01-02 08:46:47 -08:00
feb5e495f5 use ZeroLocalTCPAddress for network tests
This commit makes all network tests use ZeroLocalTCPAddress
as the initial peer address, and then relies on
net.ListenAddresses()

This should get rid of the tcp addr clash problems.
2015-01-02 08:46:46 -08:00
8fb5cf9578 swap net2 -> net 2015-01-02 08:46:46 -08:00
128e820ccb mocknet: use host 2015-01-02 08:46:46 -08:00
dadb8b775b host interface + services
The separation of work in the p2p pkg is as follows:

- net implements the Swarm and connectivity
- protocol has muxer and header protocols
- host implements protocol muxing + services
- identify took over handshake completely! yay.
- p2p package works as a whole
2015-01-02 08:46:46 -08:00
d322824874 net2: separate protocols/services out.
using a placeholder net2 package so tests continue to pass.
Will be swapped atomically into main code.
2015-01-02 08:46:46 -08:00
ba09447251 mux: close stream on error
remove comment about spdystream. this is now
superceded by go-peerstream interface.
2015-01-02 08:46:46 -08:00
53d190da2c peerstore: AddPeerInfo 2015-01-02 08:46:46 -08:00
0ef035ef08 combined protocol and mux 2015-01-02 08:46:45 -08:00