Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
plugin
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
link33
plugin
Commits
7ae9e8e5
Commit
7ae9e8e5
authored
May 30, 2019
by
张振华
Browse files
Options
Browse Files
Download
Plain Diff
update
parents
52c44dd9
8ceecca3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
29 deletions
+30
-29
docker-compose.sh
build/docker-compose.sh
+1
-1
test-rpc.sh
plugin/dapp/guess/cmd/build/test-rpc.sh
+29
-28
No files found.
build/docker-compose.sh
View file @
7ae9e8e5
...
...
@@ -366,7 +366,7 @@ function main() {
### test cases ###
ip
=
$(${
CLI
}
net info | jq
-r
".externalAddr"
)
ip
=
`
echo
$ip
|cut
-d
':'
-f
1
`
ip
=
$(
echo
$ip
|
cut
-d
':'
-f
1
)
dapp_run
test
"
${
ip
}
"
### rpc test ###
...
...
plugin/dapp/guess/cmd/build/test-rpc.sh
View file @
7ae9e8e5
...
...
@@ -26,7 +26,7 @@ echo_rst() {
CASE_ERR
=
"err"
fi
}
set
-x
saveSeed
()
{
seed
=
"journey notable narrow few bar stuff notable custom miss brother attend tongue price theme resist"
...
...
@@ -79,7 +79,6 @@ importPrivkey3() {
echo_rst
"
$FUNCNAME
"
"
$?
"
}
sendTransaction1
()
{
ispara
=
$(
echo
'"'
"
${
MAIN_HTTP
}
"
'"'
| jq
'.|contains("8901")'
)
echo
"ipara=
$ispara
"
...
...
@@ -89,6 +88,7 @@ sendTransaction1() {
old
=
${
MAIN_HTTP
}
MAIN_HTTP
=
"
${
MAIN_HTTP
//8901/8801
}
"
Chain33_SendToAddress 14KEKbYtKKQm4wMthSK9J4La4nAiidGozt 1EbDHAXpoiewjPLX9uqoz38HsKqMXayZrF 300000000
MAIN_HTTP
=
${
old
}
return
...
...
@@ -141,6 +141,7 @@ queryBalance1() {
[
"
$ok
"
==
true
]
echo_rst
"
$FUNCNAME
"
"
$?
"
echo
"
$resp
"
|jq
-r
".result"
}
sendTransaction2
()
{
local
fee
=
1000000
...
...
@@ -196,14 +197,14 @@ sendToExec2() {
echo_rst
"
$FUNCNAME
"
"
$rst
"
}
sendToExec11
(){
from
=
"12qyocayNF7Lv6C9qW4avxs2E7U41fKSfv"
Chain33_SendToAddress
"
$from
"
"
$guess_addr
"
20000000000
sendToExec11
()
{
from
=
"12qyocayNF7Lv6C9qW4avxs2E7U41fKSfv"
Chain33_SendToAddress
"
$from
"
"
$guess_addr
"
20000000000
}
sendToExec12
(){
from
=
"1EbDHAXpoiewjPLX9uqoz38HsKqMXayZrF"
Chain33_SendToAddress
"
$from
"
"
$guess_addr
"
20000000000
sendToExec12
()
{
from
=
"1EbDHAXpoiewjPLX9uqoz38HsKqMXayZrF"
Chain33_SendToAddress
"
$from
"
"
$guess_addr
"
20000000000
}
queryBalance2
()
{
...
...
@@ -214,7 +215,9 @@ queryBalance2() {
ok
=
$(
jq
'(.error|not) and (.result != "")'
<<<
"
$resp
"
)
[
"
$ok
"
==
true
]
echo_rst
"
$FUNCNAME
"
"
$?
"
echo
"
$resp
"
|jq
-r
".result"
}
queryBalance3
()
{
req
=
'"method":"Chain33.GetBalance","params":[{"Addresses":["1EbDHAXpoiewjPLX9uqoz38HsKqMXayZrF"]}]'
...
...
@@ -224,6 +227,7 @@ queryBalance3() {
ok
=
$(
jq
'(.error|not) and (.result != "")'
<<<
"
$resp
"
)
[
"
$ok
"
==
true
]
echo_rst
"
$FUNCNAME
"
"
$?
"
echo
"
$resp
"
|jq
-r
".result"
}
...
...
@@ -444,7 +448,6 @@ init() {
echo
"guess_addr=
$guess_addr
"
}
function
run_test
()
{
#保存seed
...
...
@@ -510,7 +513,6 @@ function run_test() {
#查询游戏状态
guess_QueryGameByID
"
$eventId
"
12
#管理员停止下注
guess_game_stop
...
...
@@ -529,7 +531,6 @@ function run_test() {
#查询游戏状态
guess_QueryGameByID
"
$eventId
"
15
#start->stop->abort
guess_game_start
...
...
@@ -581,34 +582,38 @@ function run_test() {
#start->bet->abort
#管理员创建游戏
guess_game_start
guess_game_start
#等待2个区块
block_wait 2
#等待2个区块
block_wait 2
#查询游戏状态
guess_QueryGameByID
"
$eventId
"
11
#用户1下注
guess_game_bet1
#等待1个区块
block_wait 2
#用户1下注
guess_game_bet1
#等待1个区块
block_wait 2
#查询游戏状态
guess_QueryGameByID
"
$eventId
"
12
#用户2下注
guess_game_bet2
#等待2个区块
block_wait 2
#用户2下注
guess_game_bet2
#等待2个区块
block_wait 2
#查询游戏状态
guess_QueryGameByID
"
$eventId
"
12
#管理员发布结果
guess_game_abort
#管理员发布结果
guess_game_abort
#等待1个区块
block_wait 2
...
...
@@ -643,7 +648,6 @@ function run_test() {
#查询游戏状态
guess_QueryGameByID
"
$eventId
"
12
#管理员停止下注
guess_game_stop
...
...
@@ -682,5 +686,3 @@ function main() {
}
main
"
$1
"
set
+x
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment