Merge pull request #8 from fkautz/pr_out_setting_up_initial_cli_options_and_http_handlers

Setting up initial cli options and http handlers
This commit is contained in:
Anand Babu (AB) Periasamy 2014-11-02 18:52:31 -08:00
commit 428f012830
7 changed files with 119 additions and 25 deletions

View file

@ -1,6 +1,6 @@
GOPATH := $(CURDIR)/tmp/gopath
all: build copy_bin
all: build test copy_bin
copy_bin:
cp tmp/gopath/bin/* bin/
@ -12,6 +12,9 @@ stage_build:
rsync -a . tmp/gopath/src/github.com/minios/minios/
rsync -a third_party/* tmp/gopath
test:
go test github.com/minios/minios
go test github.com/minios/minios/minio
build: stage_build
go install github.com/minios/minios/minio

15
gateway.go Normal file
View file

@ -0,0 +1,15 @@
package minio
import (
"fmt"
"github.com/gorilla/mux"
"net/http"
)
func GatewayHandler(w http.ResponseWriter, req *http.Request) {
fmt.Fprintf(w, "Gateway")
}
func RegisterGatewayHandlers(router *mux.Router) {
router.HandleFunc("/gateway/rpc", GatewayHandler)
}

27
gateway_test.go Normal file
View file

@ -0,0 +1,27 @@
package minio
import (
"io/ioutil"
"log"
"net/http"
"net/http/httptest"
"testing"
)
func TestPrintsGateway(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(GatewayHandler))
defer server.Close()
res, err := http.Get(server.URL)
if err != nil {
log.Fatal(err)
}
body, err := ioutil.ReadAll(res.Body)
res.Body.Close()
if err != nil {
log.Fatal(err)
}
bodyString := string(body)
if bodyString != "Gateway" {
log.Fatal("Expected 'Gateway', Received '" + bodyString + "'")
}
}

View file

@ -2,12 +2,40 @@ package main
import (
"github.com/codegangsta/cli"
"github.com/gorilla/mux"
"github.com/minios/minios"
"log"
"net/http"
"os"
)
func main() {
cli.NewApp().Run(os.Args)
server := minio.Server{}
server.Start()
app := cli.NewApp()
router := mux.NewRouter()
runServer := false
app.Commands = []cli.Command{
{
Name: "storage",
Usage: "Start a storage node",
Action: func(c *cli.Context) {
minio.RegisterStorageHandlers(router)
runServer = true
},
},
{
Name: "gateway",
Usage: "Start a gateway node",
Action: func(c *cli.Context) {
minio.RegisterGatewayHandlers(router)
runServer = true
},
},
}
err := app.Run(os.Args)
if err != nil {
log.Fatal("App failed to load", err)
}
if runServer {
log.Fatal(http.ListenAndServe(":8080", router))
}
}

View file

@ -1,21 +0,0 @@
package minio
import (
"fmt"
"github.com/gorilla/mux"
"net/http"
)
type Server struct {
}
func (server *Server) Start() error {
r := mux.NewRouter()
r.HandleFunc("/", HelloHandler)
fmt.Println("Running http server on port 8080")
return http.ListenAndServe(":8080", r)
}
func HelloHandler(w http.ResponseWriter, req *http.Request) {
fmt.Fprintf(w, "Host: "+req.Host)
}

15
storage.go Normal file
View file

@ -0,0 +1,15 @@
package minio
import (
"fmt"
"github.com/gorilla/mux"
"net/http"
)
func RegisterStorageHandlers(router *mux.Router) {
router.HandleFunc("/storage/rpc", StorageHandler)
}
func StorageHandler(w http.ResponseWriter, req *http.Request) {
fmt.Fprintf(w, "Storage")
}

27
storage_test.go Normal file
View file

@ -0,0 +1,27 @@
package minio
import (
"io/ioutil"
"log"
"net/http"
"net/http/httptest"
"testing"
)
func TestPrintsStorage(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(StorageHandler))
defer server.Close()
res, err := http.Get(server.URL)
if err != nil {
log.Fatal(err)
}
body, err := ioutil.ReadAll(res.Body)
res.Body.Close()
if err != nil {
log.Fatal(err)
}
bodyString := string(body)
if bodyString != "Storage" {
log.Fatal("Expected 'Storage', Received '" + bodyString + "'")
}
}