@@ -959,17 +959,66 @@ describe("api", async () => {
959
959
} ) ;
960
960
961
961
describe ( "castVote" , ( ) => {
962
+ it ( "should fail to castVote if proposal inactive" , async ( ) => {
963
+ await user6StakeConnection . delegate (
964
+ user6 ,
965
+ WHTokenBalance . fromString ( "50" ) ,
966
+ ) ;
967
+
968
+ let proposalIdInput = await addTestProposal (
969
+ user6StakeConnection ,
970
+ Math . floor ( Date . now ( ) / 1000 ) + 20 ,
971
+ ) ;
972
+
973
+ let stakeAccountMetadataAddress =
974
+ await user6StakeConnection . getStakeMetadataAddress (
975
+ user6StakeConnection . userPublicKey ( ) ,
976
+ ) ;
977
+ let previousStakeAccountCheckpointsAddress =
978
+ await user6StakeConnection . getStakeAccountCheckpointsAddressByMetadata (
979
+ stakeAccountMetadataAddress ,
980
+ false ,
981
+ ) ;
982
+
983
+ const { proposalAccount } =
984
+ await user6StakeConnection . fetchProposalAccount ( proposalIdInput ) ;
985
+
986
+ try {
987
+ await user6StakeConnection . program . methods
988
+ . castVote (
989
+ Array . from ( proposalIdInput ) ,
990
+ new BN ( 10 ) ,
991
+ new BN ( 20 ) ,
992
+ new BN ( 12 ) ,
993
+ 0 ,
994
+ )
995
+ . accountsPartial ( {
996
+ proposal : proposalAccount ,
997
+ voterCheckpoints : previousStakeAccountCheckpointsAddress ,
998
+ voterCheckpointsNext : null ,
999
+ } )
1000
+ . rpc ( ) ;
1001
+
1002
+ assert . fail ( "Expected an error but none was thrown" ) ;
1003
+ } catch ( e ) {
1004
+ assert (
1005
+ ( e as AnchorError ) . error ?. errorCode ?. code === "ProposalInactive" ,
1006
+ ) ;
1007
+ }
1008
+ } ) ;
1009
+
962
1010
it ( "should fail to castVote if votes were added in the voteWeightWindow" , async ( ) => {
963
1011
await user6StakeConnection . delegate (
964
1012
user6 ,
965
- WHTokenBalance . fromString ( "150 " ) ,
1013
+ WHTokenBalance . fromString ( "100 " ) ,
966
1014
) ;
967
1015
968
1016
// voteWeightWindow is 10s
969
1017
let proposalIdInput = await addTestProposal (
970
1018
user6StakeConnection ,
971
1019
Math . floor ( Date . now ( ) / 1000 ) + 3 ,
972
1020
) ;
1021
+ await sleep ( 4000 ) ;
973
1022
974
1023
let stakeAccountMetadataAddress =
975
1024
await user6StakeConnection . getStakeMetadataAddress (
@@ -1014,11 +1063,16 @@ describe("api", async () => {
1014
1063
WHTokenBalance . fromString ( "150" ) ,
1015
1064
) ;
1016
1065
1066
+ let voteStart = Math . floor ( Date . now ( ) / 1000 ) + 12 ;
1017
1067
let proposalIdInput = await addTestProposal (
1018
1068
user3StakeConnection ,
1019
- Math . floor ( Date . now ( ) / 1000 ) + 12 ,
1069
+ voteStart ,
1020
1070
) ;
1021
1071
1072
+ while ( voteStart >= Math . floor ( Date . now ( ) / 1000 ) ) {
1073
+ await sleep ( 1000 ) ;
1074
+ }
1075
+ await sleep ( 1000 ) ;
1022
1076
await user3StakeConnection . castVote (
1023
1077
proposalIdInput ,
1024
1078
new BN ( 10 ) ,
@@ -1053,6 +1107,7 @@ describe("api", async () => {
1053
1107
it ( "should cast vote with the correct weight" , async ( ) => {
1054
1108
let stakeAccountCheckpointsAddress ;
1055
1109
let proposalIdInput ;
1110
+ let voteStart ;
1056
1111
1057
1112
// Create 6 checkpoints, 1 second apart
1058
1113
for ( let i = 0 ; i < 6 ; i ++ ) {
@@ -1064,15 +1119,20 @@ describe("api", async () => {
1064
1119
// Create a proposal with a start time 10 seconds in the future in iteration 5
1065
1120
// We do this because the vote weight window is 10 seconds
1066
1121
if ( i == 4 ) {
1122
+ voteStart = Math . floor ( Date . now ( ) / 1000 ) + 10 ;
1067
1123
proposalIdInput = await addTestProposal (
1068
1124
user7StakeConnection ,
1069
- Math . floor ( Date . now ( ) / 1000 ) + 10 ,
1125
+ voteStart ,
1070
1126
) ;
1071
1127
}
1072
1128
1073
1129
await sleep ( 1000 ) ;
1074
1130
}
1075
1131
1132
+ while ( voteStart >= Math . floor ( Date . now ( ) / 1000 ) ) {
1133
+ await sleep ( 1000 ) ;
1134
+ }
1135
+ await sleep ( 1000 ) ;
1076
1136
await user7StakeConnection . castVote (
1077
1137
proposalIdInput ,
1078
1138
new BN ( 10 ) ,
@@ -1088,7 +1148,6 @@ describe("api", async () => {
1088
1148
assert . equal ( againstVotes . toString ( ) , "10" ) ;
1089
1149
assert . equal ( forVotes . toString ( ) , "20" ) ;
1090
1150
assert . equal ( abstainVotes . toString ( ) , "12" ) ;
1091
-
1092
1151
} ) ;
1093
1152
1094
1153
it ( "should fail to castVote if next voter checkpoints are invalid" , async ( ) => {
@@ -1103,6 +1162,7 @@ describe("api", async () => {
1103
1162
user4StakeConnection ,
1104
1163
voteStart ,
1105
1164
) ;
1165
+
1106
1166
const { proposalAccount } =
1107
1167
await user4StakeConnection . fetchProposalAccount ( proposalIdInput ) ;
1108
1168
@@ -1114,6 +1174,10 @@ describe("api", async () => {
1114
1174
WHTokenBalance . fromString ( "5" ) ,
1115
1175
) ;
1116
1176
}
1177
+ await sleep ( 5000 ) ;
1178
+ while ( voteStart >= Math . floor ( Date . now ( ) / 1000 ) ) {
1179
+ await sleep ( 1000 ) ;
1180
+ }
1117
1181
1118
1182
let currentStakeAccountCheckpointsAddress =
1119
1183
await user4StakeConnection . getStakeAccountCheckpointsAddress (
@@ -1178,8 +1242,9 @@ describe("api", async () => {
1178
1242
1179
1243
let proposalIdInput = await addTestProposal (
1180
1244
user4StakeConnection ,
1181
- Math . floor ( Date . now ( ) / 1000 ) + 12 ,
1245
+ Math . floor ( Date . now ( ) / 1000 ) + 11 ,
1182
1246
) ;
1247
+ await sleep ( 12000 ) ;
1183
1248
1184
1249
const { proposalAccount } =
1185
1250
await user4StakeConnection . fetchProposalAccount ( proposalIdInput ) ;
0 commit comments