Skip to content

Commit bde612b

Browse files
authored
Merge branch 'master' into check-format
2 parents ecf9482 + 1dd1905 commit bde612b

File tree

5 files changed

+34
-1
lines changed

5 files changed

+34
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[![](https://goby-slack-invite.herokuapp.com/badge.svg)](https://goby-slack-invite.herokuapp.com)
55
[![Discord](https://img.shields.io/discord/678892628955103232?label=discord)](https://discord.gg/SS5HbYN)
6-
[![Build Status](https://travis-ci.org/goby-lang/goby.svg?branch=master)](https://travis-ci.org/goby-lang/goby)
6+
[![Build Status](https://travis-ci.com/goby-lang/goby.svg?branch=master)](https://travis-ci.com/goby-lang/goby)
77
[![GoDoc](https://godoc.org/github.com/goby-lang/goby?status.svg)](https://godoc.org/github.com/goby-lang/goby)
88
[![Go Report Card](https://goreportcard.com/badge/github.com/goby-lang/goby)](https://goreportcard.com/report/github.com/goby-lang/goby)
99
[![codecov](https://codecov.io/gh/goby-lang/goby/branch/master/graph/badge.svg)](https://codecov.io/gh/goby-lang/goby)

vm/http.go

+8
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ var builtinHTTPClassMethods = []*BuiltinMethodObject{
2828
// Sends a GET request to the target and returns the HTTP response as a string. Will error on non-200 responses, for more control over http requests look at the `start` method.
2929
Name: "get",
3030
Fn: func(receiver Object, sourceLine int, t *Thread, args []Object, blockFrame *normalCallFrame) Object {
31+
if len(args) < 1 {
32+
return t.vm.InitErrorObject(errors.ArgumentError, sourceLine, errors.WrongNumberOfArgumentMore, 1, len(args))
33+
}
34+
3135
arg0, ok := args[0].(*StringObject)
3236
if !ok {
3337
return t.vm.InitErrorObject(errors.ArgumentError, sourceLine, errors.WrongArgumentTypeFormatNum, 0, "String", args[0].Class().Name)
@@ -115,6 +119,10 @@ var builtinHTTPClassMethods = []*BuiltinMethodObject{
115119
// Sends a HEAD request to the target with type header and body. Returns the HTTP headers as a map[string]string. Will error on non-200 responses, for more control over http requests look at the `start` method.
116120
Name: "head",
117121
Fn: func(receiver Object, sourceLine int, t *Thread, args []Object, blockFrame *normalCallFrame) Object {
122+
if len(args) < 1 {
123+
return t.vm.InitErrorObject(errors.ArgumentError, sourceLine, errors.WrongNumberOfArgumentMore, 1, len(args))
124+
}
125+
118126
arg0, ok := args[0].(*StringObject)
119127
if !ok {
120128
return t.vm.InitErrorObject(errors.ArgumentError, sourceLine, errors.WrongArgumentTypeFormatNum, 0, "String", args[0].Class().Name)

vm/http_test.go

+12
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,18 @@ func TestHTTPRequestFail(t *testing.T) {
7777
7878
Net::HTTP.get(42)
7979
`, "ArgumentError: Expect argument #0 to be String. got: Integer", 1},
80+
//Zero argument for get()
81+
{`
82+
require "net/http"
83+
84+
Net::HTTP.get
85+
`, "ArgumentError: Expect 1 or more argument(s). got: 0", 1},
86+
//Zero argument for head()
87+
{`
88+
require "net/http"
89+
90+
Net::HTTP.head
91+
`, "ArgumentError: Expect 1 or more argument(s). got: 0", 1},
8092
{`
8193
require "net/http"
8294

vm/uri.go

+7
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ var builtinURIClassMethods = []*BuiltinMethodObject{
4545
"@password": NULL,
4646
"@query": NULL,
4747
"@path": t.vm.InitStringObject("/"),
48+
"@fragment": NULL,
4849
}
4950

5051
// Scheme
@@ -92,6 +93,11 @@ var builtinURIClassMethods = []*BuiltinMethodObject{
9293
}
9394
}
9495

96+
// Fragment
97+
if u.Fragment != "" {
98+
uriAttrs["@fragment"] = t.vm.InitStringObject(u.Fragment)
99+
}
100+
95101
var c *RClass
96102

97103
if u.Scheme == "https" {
@@ -134,6 +140,7 @@ func initURIClass(vm *VM) {
134140
vm.InitStringObject("scheme"),
135141
vm.InitStringObject("user"),
136142
vm.InitStringObject("password"),
143+
vm.InitStringObject("fragment"),
137144
}
138145

139146
http.setAttrReader(attrs)

vm/uri_test.go

+6
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ func TestURIParsing(t *testing.T) {
8080
u = URI.parse("https://example.com")
8181
u.password
8282
`, nil},
83+
// Fragment
84+
{`
85+
require "uri"
86+
u = URI.parse("https://example.com#id1")
87+
u.fragment
88+
`, "id1"},
8389
}
8490

8591
for i, tt := range tests {

0 commit comments

Comments
 (0)