[73] | 1 | from datetime import datetime
|
---|
| 2 | from decimal import Decimal
|
---|
| 3 | import json
|
---|
| 4 | from pathlib import Path
|
---|
| 5 | from typing import cast, List
|
---|
| 6 | import unittest
|
---|
| 7 |
|
---|
| 8 | from geniusweb.actions.Accept import Accept
|
---|
| 9 | from geniusweb.actions.Action import Action
|
---|
| 10 | from geniusweb.actions.Offer import Offer
|
---|
| 11 | from geniusweb.actions.PartyId import PartyId
|
---|
| 12 | from geniusweb.actions.Votes import Votes
|
---|
| 13 | from geniusweb.bidspace.AllBidsList import AllBidsList
|
---|
| 14 | from geniusweb.connection.ConnectionEnd import ConnectionEnd
|
---|
| 15 | from geniusweb.inform.ActionDone import ActionDone
|
---|
| 16 | from geniusweb.inform.Inform import Inform
|
---|
| 17 | from geniusweb.inform.Settings import Settings
|
---|
| 18 | from geniusweb.inform.Voting import Voting
|
---|
| 19 | from geniusweb.inform.YourTurn import YourTurn
|
---|
| 20 | from geniusweb.issuevalue.Bid import Bid
|
---|
| 21 | from geniusweb.issuevalue.NumberValue import NumberValue
|
---|
| 22 | from geniusweb.profile.Profile import Profile
|
---|
| 23 | from geniusweb.profile.utilityspace.LinearAdditive import LinearAdditive
|
---|
| 24 | from geniusweb.profile.utilityspace.UtilitySpace import UtilitySpace
|
---|
| 25 | from geniusweb.progress.ProgressTime import ProgressTime
|
---|
| 26 | from geniusweb.references.Parameters import Parameters
|
---|
| 27 | from geniusweb.references.ProfileRef import ProfileRef
|
---|
| 28 | from geniusweb.references.ProtocolRef import ProtocolRef
|
---|
| 29 | from geniusweb.references.Reference import Reference
|
---|
| 30 | from pyson.ObjectMapper import ObjectMapper
|
---|
| 31 | from tudelft.utilities.listener.DefaultListenable import DefaultListenable
|
---|
| 32 | from uri.uri import URI # type: ignore
|
---|
| 33 |
|
---|
| 34 | from randomparty.RandomParty import RandomParty
|
---|
| 35 |
|
---|
| 36 |
|
---|
| 37 | class MyConn(ConnectionEnd[Inform, Action], DefaultListenable):
|
---|
| 38 | def __init__(self):
|
---|
| 39 | super().__init__()
|
---|
| 40 | self._actions:List[Action]=[]
|
---|
| 41 |
|
---|
| 42 | def send(self,data:Action ):
|
---|
| 43 | self._actions.append(data)
|
---|
| 44 |
|
---|
| 45 | def getReference(self) -> Reference:
|
---|
| 46 | return cast(Reference,None)
|
---|
| 47 |
|
---|
| 48 | def getRemoteURI(self)->URI:
|
---|
| 49 | return URI("whatever")
|
---|
| 50 |
|
---|
| 51 | def close(self):
|
---|
| 52 | pass
|
---|
| 53 |
|
---|
| 54 | def getError(self) -> Exception:
|
---|
| 55 | return cast(Exception, None)
|
---|
| 56 |
|
---|
| 57 | def getActions(self)-> List[Action]:
|
---|
| 58 | return self._actions
|
---|
| 59 |
|
---|
| 60 | class RandomPartyTest(unittest.TestCase):
|
---|
| 61 | pyson = ObjectMapper()
|
---|
| 62 |
|
---|
| 63 | PARTY1 = PartyId("party1")
|
---|
| 64 | profileref = ProfileRef(URI("file:test/resources/japantrip1.json"))
|
---|
| 65 | PROFILE = ProfileRef(URI("file:test/resources/testprofile.json"))
|
---|
| 66 | protocolref = ProtocolRef(URI("SAOP"))
|
---|
| 67 | mopacProtocol = ProtocolRef(URI("MOPAC"));
|
---|
| 68 | progress=ProgressTime(1000, datetime.fromtimestamp(12345))
|
---|
| 69 | parameters=Parameters()
|
---|
| 70 | mopacSettings = Settings(PARTY1, PROFILE, mopacProtocol,progress, parameters)
|
---|
| 71 | serialized = Path("test/resources/testprofile.json").read_text("utf-8")
|
---|
| 72 | profile:UtilitySpace = pyson.parse(json.loads(serialized), LinearAdditive) #type:ignore
|
---|
| 73 |
|
---|
| 74 | def setUp(self):
|
---|
| 75 | self.party=RandomParty()
|
---|
| 76 | self.connection = MyConn()
|
---|
| 77 | # we load the profile here too, to find a good bid
|
---|
| 78 |
|
---|
| 79 |
|
---|
| 80 | def test_smoke(self):
|
---|
| 81 | RandomParty()
|
---|
| 82 |
|
---|
| 83 | def testConnect(self):
|
---|
| 84 | party=RandomParty()
|
---|
| 85 | party.connect(self.connection)
|
---|
| 86 | party.disconnect()
|
---|
| 87 |
|
---|
| 88 |
|
---|
| 89 | def testSendInfo(self):
|
---|
| 90 | settings = Settings(self.PARTY1, self.profileref, self.protocolref, self.progress, self.parameters )
|
---|
| 91 |
|
---|
| 92 | self.party.connect(self.connection)
|
---|
| 93 | self.connection.notifyListeners(settings)
|
---|
| 94 | self.party.disconnect()
|
---|
| 95 | self.assertEquals([], self.connection.getActions())
|
---|
| 96 |
|
---|
| 97 | def testSendYourTurn(self):
|
---|
| 98 | self.assertEqual(0, len(self.connection.getActions()))
|
---|
| 99 | settings = Settings(self.PARTY1, self.profileref, self.protocolref, self.progress, self.parameters )
|
---|
| 100 |
|
---|
| 101 | self.party.connect(self.connection)
|
---|
| 102 | self.connection.notifyListeners(settings)
|
---|
| 103 | self.connection.notifyListeners(YourTurn())
|
---|
| 104 | self.party.disconnect()
|
---|
| 105 |
|
---|
| 106 | actions = self.connection.getActions()
|
---|
| 107 | self.assertEquals(1, len(actions))
|
---|
| 108 | self.assertTrue(isinstance(actions[0], Offer))
|
---|
| 109 | print("party did an offer: "+repr(actions[0]))
|
---|
| 110 |
|
---|
| 111 | def testSendOfferAndYourTurn(self):
|
---|
| 112 | settings = Settings(self.PARTY1, self.profileref, self.protocolref, self.progress, self.parameters )
|
---|
| 113 |
|
---|
| 114 | # nonsense bid, party should not accept
|
---|
| 115 | bid=Bid({'a':NumberValue(Decimal(1))})
|
---|
| 116 | offer = Offer(PartyId('other'), bid)
|
---|
| 117 |
|
---|
| 118 | self.party.connect(self.connection)
|
---|
| 119 | self.connection.notifyListeners(settings)
|
---|
| 120 | self.connection.notifyListeners(ActionDone(offer))
|
---|
| 121 | self.connection.notifyListeners(YourTurn())
|
---|
| 122 | self.party.disconnect()
|
---|
| 123 |
|
---|
| 124 | actions = self.connection.getActions()
|
---|
| 125 | self.assertEquals(1, len(actions))
|
---|
| 126 | self.assertTrue(isinstance(actions[0], Offer))
|
---|
| 127 |
|
---|
| 128 |
|
---|
| 129 | def testVoting(self) :
|
---|
| 130 | self.assertEqual(0, len(self.connection.getActions()))
|
---|
| 131 | self.party.connect(self.connection);
|
---|
| 132 | self.party.notifyChange(self.mopacSettings);
|
---|
| 133 |
|
---|
| 134 | bid = self._findGoodBid()
|
---|
| 135 | offer = Offer(self.PARTY1, bid)
|
---|
| 136 | self.party.notifyChange(Voting([offer],{self.PARTY1: 1}))
|
---|
| 137 | self.assertEqual(1, len(self.connection.getActions()))
|
---|
| 138 | action = self.connection.getActions()[0]
|
---|
| 139 | self.assertTrue(isinstance(action,Votes))
|
---|
| 140 | self.assertEqual(1, len(action.getVotes()))
|
---|
| 141 | self.assertEqual(bid, next(iter(action.getVotes())).getBid())
|
---|
| 142 |
|
---|
| 143 | def _findGoodBid(self)-> Bid:
|
---|
| 144 | for bid in AllBidsList(self.profile.getDomain()):
|
---|
| 145 | if self.profile.getUtility(bid) > 0.7:
|
---|
| 146 | return bid;
|
---|
| 147 | raise ValueError("Test can not be done: there is no good bid with utility>0.7");
|
---|