Browse Source

Support Int64, tests

Volodymyr Tkach 2 years ago
parent
commit
3761647025
3 changed files with 90 additions and 3 deletions
  1. 25 0
      session/int64.go
  2. 2 0
      session/session.go
  3. 63 3
      session/session_test.go

+ 25 - 0
session/int64.go

@@ -0,0 +1,25 @@
+package session
+
+func (s *Session) IsSetInt64(name string) bool {
+	if _, ok := s.varlist.Int64[name]; ok {
+		return true
+	} else {
+		return false
+	}
+}
+
+func (s *Session) GetInt64(name string, def int64) int64 {
+	if v, ok := s.varlist.Int64[name]; ok {
+		return v
+	} else {
+		return def
+	}
+}
+
+func (s *Session) SetInt64(name string, value int64) {
+	isset := s.IsSetInt64(name)
+	s.varlist.Int64[name] = value
+	if isset || value != 0 {
+		s.changed = true
+	}
+}

+ 2 - 0
session/session.go

@@ -14,6 +14,7 @@ import (
 type vars struct {
 	Bool   map[string]bool
 	Int    map[string]int
+	Int64  map[string]int64
 	String map[string]string
 }
 
@@ -85,6 +86,7 @@ func New(w http.ResponseWriter, r *http.Request, tmpdir string) *Session {
 	s.varlist = &vars{
 		Bool:   map[string]bool{},
 		Int:    map[string]int{},
+		Int64:  map[string]int64{},
 		String: map[string]string{},
 	}
 

+ 63 - 3
session/session_test.go

@@ -126,6 +126,64 @@ func TestSessionInt(t *testing.T) {
 	}
 }
 
+func TestSessionInt64(t *testing.T) {
+	// Set value
+	request, err := http.NewRequest("GET", "/set", nil)
+	if err != nil {
+		t.Fatal(err)
+	}
+	request.Header.Set("Cookie", "session="+SessionId)
+	recorder := httptest.NewRecorder()
+	http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
+		sess := New(w, r, "./../tmp")
+		defer sess.Close()
+		if r.URL.Path == "/set" {
+			sess.SetInt64("some_int64", 10)
+			if _, err := w.Write([]byte(`ok`)); err != nil {
+				fmt.Printf("%s\n", err.Error())
+			}
+		} else {
+			w.WriteHeader(http.StatusNotFound)
+			if _, err := w.Write([]byte(`404`)); err != nil {
+				fmt.Printf("%s\n", err.Error())
+			}
+		}
+	}).ServeHTTP(recorder, request)
+	if recorder.Body.String() != "ok" {
+		t.Fatalf("bad body response, not match")
+	}
+
+	// Remember session id
+	if SessionId == "" && len(recorder.Result().Cookies()) > 0 {
+		SessionId = recorder.Result().Cookies()[0].Value
+	}
+
+	// Get value
+	request, err = http.NewRequest("GET", "/get", nil)
+	if err != nil {
+		t.Fatal(err)
+	}
+	request.Header.Set("Cookie", "session="+SessionId)
+	recorder = httptest.NewRecorder()
+	http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
+		sess := New(w, r, "./../tmp")
+		defer sess.Close()
+		if r.URL.Path == "/get" {
+			if _, err := w.Write([]byte(fmt.Sprintf("%d", sess.GetInt64("some_int64", 0)))); err != nil {
+				fmt.Printf("%s\n", err.Error())
+			}
+		} else {
+			w.WriteHeader(http.StatusNotFound)
+			if _, err := w.Write([]byte(`404`)); err != nil {
+				fmt.Printf("%s\n", err.Error())
+			}
+		}
+	}).ServeHTTP(recorder, request)
+	if recorder.Body.String() != "10" {
+		t.Fatalf("bad body response, not match")
+	}
+}
+
 func TestSessionString(t *testing.T) {
 	// Set value
 	request, err := http.NewRequest("GET", "/set", nil)
@@ -193,7 +251,7 @@ func TestSessionActualFile(t *testing.T) {
 	if err != nil {
 		t.Fatal(err)
 	}
-	if string(bytes) != `{"Bool":{"some_bool":true},"Int":{"some_int":5},"String":{"some_str":"test"}}` {
+	if string(bytes) != `{"Bool":{"some_bool":true},"Int":{"some_int":5},"Int64":{"some_int64":10},"String":{"some_str":"test"}}` {
 		t.Fatal("actual file content, not match")
 	}
 	err = os.Remove(fname)
@@ -215,6 +273,7 @@ func TestSessionDoNotCreateSessionFileForDefValues(t *testing.T) {
 		if r.URL.Path == "/set" {
 			sess.SetBool("some_bool", false)
 			sess.SetInt("some_int", 0)
+			sess.SetInt64("some_int64", 0)
 			sess.SetString("some_str", "")
 			if _, err := w.Write([]byte(`ok`)); err != nil {
 				fmt.Printf("%s\n", err.Error())
@@ -251,9 +310,10 @@ func TestSessionDoNotCreateSessionFileForDefValues(t *testing.T) {
 		defer sess.Close()
 		if r.URL.Path == "/get" {
 			if _, err := w.Write([]byte(fmt.Sprintf(
-				"(%v)(%v)(%v)",
+				"(%v)(%v)(%v)(%v)",
 				sess.GetBool("some_bool", false),
 				sess.GetInt("some_int", 0),
+				sess.GetInt64("some_int64", 0),
 				sess.GetString("some_str", ""),
 			))); err != nil {
 				fmt.Printf("%s\n", err.Error())
@@ -265,7 +325,7 @@ func TestSessionDoNotCreateSessionFileForDefValues(t *testing.T) {
 			}
 		}
 	}).ServeHTTP(recorder, request)
-	if recorder.Body.String() != "(false)(0)()" {
+	if recorder.Body.String() != "(false)(0)(0)()" {
 		t.Fatalf("bad body response, not match")
 	}