File: url_test.go

package info (click to toggle)
golang-github-anacrolix-missinggo 2.1.0-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 872 kB
  • sloc: makefile: 4
file content (19 lines) | stat: -rw-r--r-- 514 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package httptoo

import (
	"net/url"
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestAppendURL(t *testing.T) {
	assert.EqualValues(t, "http://localhost:8080/trailing/slash/", AppendURL(
		&url.URL{Scheme: "http", Host: "localhost:8080"},
		&url.URL{Path: "/trailing/slash/"},
	).String())
	assert.EqualValues(t, "ws://localhost:8080/events?ih=harpdarp", AppendURL(
		&url.URL{Scheme: "http", Host: "localhost:8080"},
		&url.URL{Scheme: "ws", Path: "/events", RawQuery: "ih=harpdarp"},
	).String())
}