Closed GoogleCodeExporter closed 9 years ago
Yep, the reflection was not creating new instances. Introduced in refactor.
Added test cases
Original comment by siyabong...@gmail.com
on 22 Oct 2013 at 4:58
Awesome work, thanks siyabong.
Original comment by co...@soundcloud.com
on 22 Oct 2013 at 5:02
TestStress crashes on my machine.
$ go test -v -test.run=TestStress >stdout 2>stderr ; echo $? 1
It panics here:
1 panic: runtime error: invalid memory address or nil pointer dereference
2 [signal 0xb code=0x1 addr=0x10 pc=0x510c2]
3
4 goroutine 36 [running]:
5 runtime.panic(0x2a3da0, 0x5f6339)
6 /tmp/src/code.google.com/p/go/src/pkg/runtime/panic.c:266 +0xb6
7 tmp/gorest.func·003(0xc210039240, 0x20)
8 /tmp/src/tmp/gorest/api-stress_test.go:46 +0xc2
9 created by tmp/gorest.loop1
10 /tmp/src/tmp/gorest/api-stress_test.go:54 +0xbe
I was able to stop the panics by checking the error returned by Delete, here:
- https://code.google.com/p/gorest/source/browse/api-stress_test.go#45
But now the TestStress doesn't return after several minutes. I didn't dig
further.
The library appears to have data races. Every unsynchronized access to a
package-global variable is unsafe:
- client.go sharedClient:
https://code.google.com/p/gorest/source/browse/client.go#38
- gorest.go restManager and handlerInitialized:
https://code.google.com/p/gorest/source/browse/gorest.go#91
If your test coverage is sufficient, you may be able to confirm some of those
by running `go test -race -i && go test -race`. Otherwise, you can build the
library and a binary driver both with `go build -race` and run it in a regular
environment. Race conditions will be printed to stderr as they're encountered.
Original comment by p...@soundcloud.com
on 23 Oct 2013 at 8:33
With a quick check (without time to look it too much detail why) this change
breaks existing servers. Have removed gorest usage for now. Is it worth
reopening this issue rather than leave it 'fixed'?
Original comment by co...@soundcloud.com
on 24 Oct 2013 at 10:03
Original issue reported on code.google.com by
co...@soundcloud.com
on 16 Oct 2013 at 7:47