-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8f461b1
commit 9a32a04
Showing
14 changed files
with
227 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# This workflow will build a golang project | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go | ||
|
||
name: Go | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.23.x' | ||
|
||
- name: Test | ||
run: go test -v ./util ./api | ||
|
||
- name: Build | ||
run: go build -v . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
package api_test | ||
|
||
import ( | ||
"bytes" | ||
"encoding/json" | ||
"io" | ||
"math/rand" | ||
"net/http" | ||
"net/http/httptest" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/slotopol/server/api" | ||
"github.com/slotopol/server/cmd" | ||
cfg "github.com/slotopol/server/config" | ||
|
||
"github.com/gin-gonic/gin" | ||
) | ||
|
||
const email, secret = "[email protected]", "iVI05M" | ||
|
||
func ping(t *testing.T, r *gin.Engine) { | ||
var req = httptest.NewRequest("GET", "/ping", nil) | ||
var w = httptest.NewRecorder() | ||
r.ServeHTTP(w, req) | ||
if w.Code != http.StatusOK { | ||
t.Error("ping is not ok") | ||
} | ||
var resp = w.Result() | ||
if !strings.HasPrefix(resp.Header.Get("Server"), "slotopol/") { | ||
t.Error("alien server") | ||
} | ||
} | ||
|
||
func post(t *testing.T, r *gin.Engine, path string, token string, arg any) (ret gin.H) { | ||
var err error | ||
var b []byte | ||
|
||
if b, err = json.Marshal(arg); err != nil { | ||
t.Error(err) | ||
} | ||
var req = httptest.NewRequest("POST", path, bytes.NewReader(b)) | ||
req.Header.Set("Content-Type", "application/json") | ||
req.Header.Set("Accept", "application/json") | ||
if token != "" { | ||
req.Header.Set("Authorization", "Bearer "+token) | ||
} | ||
var w = httptest.NewRecorder() | ||
r.ServeHTTP(w, req) | ||
if w.Code == http.StatusNoContent { | ||
return | ||
} | ||
if w.Code != http.StatusOK { | ||
t.Errorf("'%s' is not ok, status %d", path, w.Code) | ||
} | ||
var resp = w.Result() | ||
if b, err = io.ReadAll(resp.Body); err != nil { | ||
t.Error(err) | ||
} | ||
if err = json.Unmarshal(b, &ret); err != nil { | ||
t.Error(err) | ||
} | ||
if w.Code != http.StatusOK { | ||
t.Logf("message: %v, code: %v", ret["what"], ret["code"]) | ||
} | ||
return | ||
} | ||
|
||
func TestPlay(t *testing.T) { | ||
var err error | ||
var arg, ret gin.H | ||
var token string | ||
var gid any | ||
|
||
// Prepare in-memory database | ||
cfg.CfgPath = "../appdata" | ||
if err = cmd.Init(); err != nil { | ||
t.Fatal(err) | ||
} | ||
|
||
gin.SetMode(gin.DebugMode) | ||
var r = gin.New() | ||
r.HandleMethodNotAllowed = true | ||
api.Router(r) | ||
|
||
// Send "ping" and check that server is our | ||
ping(t, r) | ||
|
||
// Sign-in player | ||
arg = gin.H{ | ||
"email": email, | ||
"secret": secret, | ||
} | ||
ret = post(t, r, "/signin", "", arg) | ||
token = ret["access"].(string) | ||
|
||
// Join game | ||
arg = gin.H{ | ||
"cid": 1, // 'virtual' club | ||
"uid": 3, // player ID | ||
"alias": "Novomatic / Dolphins Pearl", | ||
} | ||
ret = post(t, r, "/game/join", token, arg) | ||
gid = ret["gid"] | ||
|
||
arg = gin.H{ | ||
"gid": gid, | ||
"bet": 1, | ||
} | ||
post(t, r, "/slot/bet/set", token, arg) | ||
arg = gin.H{ | ||
"gid": gid, | ||
"sel": 5, | ||
} | ||
post(t, r, "/slot/sel/set", token, arg) | ||
|
||
// Play the game with 50 spins | ||
for range 50 { | ||
// make spin | ||
arg = gin.H{ | ||
"gid": gid, | ||
} | ||
ret = post(t, r, "/slot/spin", token, arg) | ||
t.Logf("[spin] gid: %v, sid: %v, wallet: %v", gid, ret["sid"], ret["wallet"]) | ||
var game = ret["game"].(map[string]any) | ||
|
||
// no any more actions on free spins | ||
if _, ok := game["fsr"]; ok { | ||
continue | ||
} | ||
if _, ok := game["gain"]; !ok { | ||
continue | ||
} | ||
t.Logf("gain: %v", game["gain"]) | ||
|
||
// if there has a win, make double-ups sometime | ||
if rand.Float64() < 0.3 { | ||
for { | ||
arg = gin.H{ | ||
"gid": gid, | ||
"mult": 2, | ||
} | ||
ret = post(t, r, "/slot/doubleup", token, arg) | ||
var gain = ret["gain"].(float64) | ||
t.Logf("[doubleup] gid: %v, id: %v, wallet: %v, gain: %g", gid, ret["id"], ret["wallet"], gain) | ||
if gain == 0 { | ||
break | ||
} | ||
if rand.Float64() < 0.5 { | ||
arg = gin.H{ | ||
"gid": gid, | ||
} | ||
post(t, r, "/slot/collect", token, arg) | ||
t.Logf("[collect] gid: %v", gid) | ||
break | ||
} | ||
} | ||
} | ||
} | ||
|
||
// Part game | ||
arg = gin.H{ | ||
"gid": gid, | ||
} | ||
post(t, r, "/game/part", token, arg) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters