Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
509c5155
Commit
509c5155
authored
Oct 09, 2015
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
integration: Update go's http2 package URI
parent
8e6b92bd
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
README.rst
README.rst
+2
-2
integration-tests/Makefile.am
integration-tests/Makefile.am
+1
-1
integration-tests/nghttpx_http1_test.go
integration-tests/nghttpx_http1_test.go
+1
-1
integration-tests/nghttpx_http2_test.go
integration-tests/nghttpx_http2_test.go
+2
-2
integration-tests/nghttpx_spdy_test.go
integration-tests/nghttpx_spdy_test.go
+1
-1
integration-tests/server_tester.go
integration-tests/server_tester.go
+2
-2
No files found.
README.rst
View file @
509c5155
...
...
@@ -217,10 +217,10 @@ We have the integration tests for the nghttpx proxy server. The tests are
written in the `Go programming language <http://golang.org/>`_ and uses
its testing framework. We depend on the following libraries:
* https://github.com/bradfitz/http2
* golang.org/x/net/http2
* golang.org/x/net/websocket
* https://github.com/tatsuhiro-t/go-nghttp2
* https://github.com/tatsuhiro-t/spdy
* golang.org/x/net/websocket
To download the above packages, after settings ``GOPATH``, run the
following command under ``integration-tests`` directory::
...
...
integration-tests/Makefile.am
View file @
509c5155
...
...
@@ -36,7 +36,7 @@ EXTRA_DIST = \
return
.rb
itprep-local
:
go get
-d
-v
g
ithub.com/bradfitz
/http2
go get
-d
-v
g
olang.org/x/net
/http2
go get
-d
-v
github.com/tatsuhiro-t/go-nghttp2
go get
-d
-v
github.com/tatsuhiro-t/spdy
go get
-d
-v
golang.org/x/net/websocket
...
...
integration-tests/nghttpx_http1_test.go
View file @
509c5155
...
...
@@ -4,7 +4,7 @@ import (
"bufio"
"bytes"
"fmt"
"g
ithub.com/bradfitz
/http2/hpack"
"g
olang.org/x/net
/http2/hpack"
"golang.org/x/net/websocket"
"io"
"net/http"
...
...
integration-tests/nghttpx_http2_test.go
View file @
509c5155
...
...
@@ -3,8 +3,8 @@ package nghttp2
import
(
"crypto/tls"
"fmt"
"g
ithub.com/bradfitz
/http2"
"g
ithub.com/bradfitz
/http2/hpack"
"g
olang.org/x/net
/http2"
"g
olang.org/x/net
/http2/hpack"
"io"
"io/ioutil"
"net/http"
...
...
integration-tests/nghttpx_spdy_test.go
View file @
509c5155
package
nghttp2
import
(
"g
ithub.com/bradfitz
/http2/hpack"
"g
olang.org/x/net
/http2/hpack"
"github.com/tatsuhiro-t/spdy"
"net/http"
"testing"
...
...
integration-tests/server_tester.go
View file @
509c5155
...
...
@@ -6,8 +6,8 @@ import (
"crypto/tls"
"errors"
"fmt"
"g
ithub.com/bradfitz
/http2"
"g
ithub.com/bradfitz
/http2/hpack"
"g
olang.org/x/net
/http2"
"g
olang.org/x/net
/http2/hpack"
"github.com/tatsuhiro-t/go-nghttp2"
"github.com/tatsuhiro-t/spdy"
"golang.org/x/net/websocket"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment