コード例 #1
0
ファイル: test_stats.py プロジェクト: augmen/gratipay.com
 def setUp(self):
     Harness.setUp(self)
     for participant in ['alice', 'bob']:
         p = self.make_participant(participant,
                                   claimed_time='now',
                                   last_bill_result='')
         setattr(self, participant, p)
コード例 #2
0
 def setUp(self):
     Harness.setUp(self)
     self.admin = self.make_participant('admin', is_admin=True)
     self.alice = self.make_participant('alice')
     self.gratiteam = self.make_team('gratiteam',
                                     owner='alice',
                                     is_approved=None)
コード例 #3
0
 def setUp(self):
     Harness.setUp(self)
     for username in ['alice', 'bob', 'carl']:
         p = self.make_participant(username,
                                   claimed_time='now',
                                   elsewhere='twitter')
         setattr(self, username, p)
コード例 #4
0
ファイル: emails.py プロジェクト: HolaChica/gratipay.com
 def setUp(self):
     Harness.setUp(self)
     self.mailer_patcher = mock.patch.object(Participant._mailer.messages, 'send')
     self.mailer = self.mailer_patcher.start()
     self.addCleanup(self.mailer_patcher.stop)
     sleep_patcher = mock.patch('gratipay.models.participant.sleep')
     sleep_patcher.start()
     self.addCleanup(sleep_patcher.stop)
コード例 #5
0
 def setUp(self):
     Harness.setUp(self)
     self.mailer_patcher = mock.patch.object(Participant._mailer,
                                             'send_email')
     self.mailer = self.mailer_patcher.start()
     self.addCleanup(self.mailer_patcher.stop)
     sleep_patcher = mock.patch('gratipay.models.participant.sleep')
     sleep_patcher.start()
     self.addCleanup(sleep_patcher.stop)
コード例 #6
0
    def setUp(self):
        Harness.setUp(self)

        # Alice joins a community.
        self.alice = self.make_participant("alice", claimed_time='now', last_bill_result='')
        self.client.POST( '/for/communities.json'
                        , {'name': 'something', 'is_member': 'true'}
                        , auth_as='alice'
                         )
コード例 #7
0
    def setUp(self):
        Harness.setUp(self)

        self.alice = self.make_participant('alice', claimed_time='now')
        self.bob = self.make_participant('bob', claimed_time='now')
        self.carl = self.make_participant('carl', claimed_time='now')
        self.make_exchange('bill', 10, 0, self.alice)
        self.make_exchange('bill', 10, 0, self.bob)
        self.make_participant('notactive', claimed_time='now')

        self.alice.set_tip_to(self.carl, '1.00')
        self.bob.set_tip_to(self.carl, '2.00')
コード例 #8
0
    def setUp(self):
        Harness.setUp(self)

        self.alice = self.make_participant("alice", claimed_time="now")
        self.bob = self.make_participant("bob", claimed_time="now")
        self.carl = self.make_participant("carl", claimed_time="now")
        self.make_exchange("balanced-cc", 10, 0, self.alice)
        self.make_exchange("balanced-cc", 10, 0, self.bob)
        self.make_participant("notactive", claimed_time="now")

        self.alice.set_tip_to(self.carl, "1.00")
        self.bob.set_tip_to(self.carl, "2.00")
コード例 #9
0
    def setUp(self):
        Harness.setUp(self)

        # Grab configuration from the environment, storing for later.
        env = wireup.env()
        self.environ = env.environ

        # Change env, doesn't change self.environ.
        env.canonical_scheme = 'https'
        env.canonical_host = 'gratipay.com'

        wireup.canonical(env)
コード例 #10
0
    def setUp(self):
        Harness.setUp(self)

        self.alice = self.make_participant('alice', claimed_time='now')
        self.bob = self.make_participant('bob', claimed_time='now')
        self.carl = self.make_participant('carl', claimed_time='now')
        self.make_exchange('bill', 10, 0, self.alice)
        self.make_exchange('bill', 10, 0, self.bob)
        self.make_participant('notactive', claimed_time='now')

        self.alice.set_tip_to(self.carl, '1.00')
        self.bob.set_tip_to(self.carl, '2.00')
コード例 #11
0
ファイル: test_hooks.py プロジェクト: rohitpaulk/gratipay.com
    def setUp(self):
        Harness.setUp(self)

        # Grab configuration from the environment, storing for later.
        env = wireup.env()
        self.environ = env.environ

        # Change env, doesn't change self.environ.
        env.canonical_scheme = 'https'
        env.canonical_host = 'gratipay.com'

        wireup.canonical(env)
コード例 #12
0
    def setUp(self):
        Harness.setUp(self)

        self.alice = self.make_participant('alice', claimed_time='now')
        self.bob = self.make_participant('bob', claimed_time='now')
        self.carl = self.make_participant('carl', claimed_time='now')
        self.make_exchange('balanced-cc', 10, 0, self.alice)
        self.make_exchange('balanced-cc', 10, 0, self.bob)
        self.make_participant('notactive', claimed_time='now')

        return # XXX upgrade these when you clean up this file
        self.alice.set_tip_to(self.carl, '1.00')
        self.bob.set_tip_to(self.carl, '2.00')
コード例 #13
0
    def setUp(self):
        Harness.setUp(self)

        self.alice = self.make_participant('alice', claimed_time='now')
        self.bob = self.make_participant('bob', claimed_time='now')
        self.carl = self.make_participant('carl', claimed_time='now')
        self.make_exchange('balanced-cc', 10, 0, self.alice)
        self.make_exchange('balanced-cc', 10, 0, self.bob)
        self.make_participant('notactive', claimed_time='now')

        return  # XXX upgrade these when you clean up this file
        self.alice.set_tip_to(self.carl, '1.00')
        self.bob.set_tip_to(self.carl, '2.00')
コード例 #14
0
    def setUp(self):
        Harness.setUp(self)

        self.alice = self.make_participant("alice", claimed_time="now")
        self.bob = self.make_participant("bob", claimed_time="now")
        self.carl = self.make_participant("carl", claimed_time="now")
        self.make_exchange("balanced-cc", 10, 0, self.alice)
        self.make_exchange("balanced-cc", 10, 0, self.bob)
        self.make_participant("notactive", claimed_time="now")

        return  # XXX upgrade these when you clean up this file
        self.alice.set_tip_to(self.carl, "1.00")
        self.bob.set_tip_to(self.carl, "2.00")
コード例 #15
0
    def setUp(self):
        Harness.setUp(self)
        now = utcnow()
        hour_ago = now - datetime.timedelta(hours=1)
        for i, username in enumerate(["alice", "bob", "carl"]):
            p = self.make_participant(username, claimed_time=hour_ago, last_bill_result="", balance=Decimal(i))
            setattr(self, username, p)

        deadbeef = self.make_participant("deadbeef", balance=Decimal("18.03"), elsewhere="twitter")
        self.expected_new_balance = self.bob.balance + deadbeef.balance
        deadbeef_twitter = AccountElsewhere.from_user_name("twitter", "deadbeef")

        self.make_tip(self.carl, self.bob, "1.00")
        self.make_tip(self.alice, deadbeef, "1.00")
        self.bob.take_over(deadbeef_twitter, have_confirmation=True)
        self.deadbeef_archived = Participant.from_id(deadbeef.id)
コード例 #16
0
    def setUp(self):
        Harness.setUp(self)
        now = utcnow()
        hour_ago = now - datetime.timedelta(hours=1)
        for i, username in enumerate(['alice', 'bob', 'carl']):
            p = self.make_participant( username
                                     , claimed_time=hour_ago
                                     , last_bill_result=''
                                     , balance=Decimal(i)
                                      )
            setattr(self, username, p)

        deadbeef = self.make_participant('deadbeef', balance=Decimal('18.03'), elsewhere='twitter')
        self.expected_new_balance = self.bob.balance + deadbeef.balance
        deadbeef_twitter = AccountElsewhere.from_user_name('twitter', 'deadbeef')

        self.make_tip(self.carl, self.bob, '1.00')
        self.make_tip(self.alice, deadbeef, '1.00')
        self.bob.take_over(deadbeef_twitter, have_confirmation=True)
        self.deadbeef_archived = Participant.from_id(deadbeef.id)
コード例 #17
0
    def setUp(self):
        Harness.setUp(self)
        now = utcnow()
        hour_ago = now - datetime.timedelta(hours=1)
        for i, username in enumerate(['alice', 'bob', 'carl']):
            p = self.make_participant( username
                                     , claimed_time=hour_ago
                                     , last_bill_result=''
                                     , balance=Decimal(i)
                                      )
            setattr(self, username, p)

        deadbeef = self.make_participant('deadbeef', balance=Decimal('18.03'), elsewhere='twitter')
        self.expected_new_balance = self.bob.balance + deadbeef.balance
        deadbeef_twitter = AccountElsewhere.from_user_name('twitter', 'deadbeef')

        self.make_tip(self.carl, self.bob, '1.00')
        self.make_tip(self.alice, deadbeef, '1.00')
        self.bob.take_over(deadbeef_twitter, have_confirmation=True)
        self.deadbeef_archived = Participant.from_id(deadbeef.id)
コード例 #18
0
 def setUp(self):
     self._old = Participant._generate_api_key
     seq = itertools.count(0)
     Participant._generate_api_key = lambda self: 'deadbeef{}'.format(next(seq))
     Harness.setUp(self)
コード例 #19
0
 def setUp(self):
     Harness.setUp(self)
     self.alice_elsewhere = self.make_elsewhere('twitter', -1, 'alice')
     token, expires = self.alice_elsewhere.make_connect_token()
     self.connect_cookie = {b'connect_%s' % self.alice_elsewhere.id: token}
     self.bob = self.make_participant('bob', claimed_time='now')
コード例 #20
0
 def setUp(self):
     Harness.setUp(self)
     self.make_participant('alice', claimed_time='now')
コード例 #21
0
 def setUp(self):
     Harness.setUp(self)
     make_history(self)
コード例 #22
0
 def setUp(self):
     Harness.setUp(self)
     self.participant = self.make_participant('user1')  # Our protagonist
コード例 #23
0
 def setUp(self):
     Harness.setUp(self)
     self.add_participant("alice")
     self.add_participant("bob")
     carl = self.add_participant("carl")
     carl.insert_into_communities(False, "test", "test")
コード例 #24
0
 def setUp(self):
     Harness.setUp(self)
     now = utcnow()
     for username in ["alice", "bob", "carl"]:
         p = self.make_participant(username, claimed_time=now, elsewhere="twitter")
         setattr(self, username, p)
コード例 #25
0
 def setUp(self):
     Harness.setUp(self)
     self.participant = self.make_participant('user1')  # Our protagonist
コード例 #26
0
 def setUp(self):
     Harness.setUp(self)
     self.admin = self.make_participant("admin", is_admin=True)
     self.alice = self.make_participant("alice")
     self.gratiteam = self.make_team("gratiteam", owner="alice", is_approved=None)
コード例 #27
0
 def setUp(self):
     Harness.setUp(self)
     self.team = self.make_participant('A-Team', number='plural')
コード例 #28
0
 def setUp(self):
     Harness.setUp(self)
     self.admin = self.make_participant('admin', is_admin=True)
     self.alice = self.make_participant('alice')
     self.gratiteam = self.make_team('gratiteam', owner='alice', is_approved=None)
コード例 #29
0
    def setUp(self):
        Harness.setUp(self)

        # Alice joins a community.
        self.alice = self.make_participant("alice", claimed_time="now", last_bill_result="")
        self.client.POST("/for/communities.json", {"name": "something", "is_member": "true"}, auth_as="alice")
コード例 #30
0
 def setUp(self):
     Harness.setUp(self)
     self.make_participant('alice', claimed_time='now')
コード例 #31
0
 def setUp(self):
     Harness.setUp(self)
     self.make_participant('alice')
コード例 #32
0
 def setUp(self):
     Harness.setUp(self)
     simplate = self.client.load_resource(b'/about/stats.html')
     self.commaize = simplate.pages[0]['commaize']
コード例 #33
0
 def setUp(self):
     Harness.setUp(self)
     for participant in ['alice', 'bob']:
         p = self.make_participant(participant, claimed_time='now', last_bill_result='')
         setattr(self, participant, p)
コード例 #34
0
 def setUp(self):
     Harness.setUp(self)
     self.alice_elsewhere = self.make_elsewhere('twitter', -1, 'alice')
     token, expires = self.alice_elsewhere.make_connect_token()
     self.connect_cookie = {b'connect_%s' % self.alice_elsewhere.id: token}
     self.bob = self.make_participant('bob', claimed_time='now')
コード例 #35
0
 def setUp(self):
     Harness.setUp(self)
     self._old_base_url = self.client.website.base_url
     self.client.website.base_url = 'https://gratipay.com'
コード例 #36
0
 def setUp(self):
     Harness.setUp(self)
     self._log_every = self.app.email_queue.log_every
     self.app.email_queue.log_every = 1
コード例 #37
0
 def setUp(self):
     Harness.setUp(self)
     now = utcnow()
     for username in ['alice', 'bob', 'carl']:
         p = self.make_participant(username, claimed_time=now, elsewhere='twitter')
         setattr(self, username, p)
コード例 #38
0
 def setUp(self):
     Harness.setUp(self)
     self.make_participant('alice')
コード例 #39
0
 def setUp(self):
     Harness.setUp(self)
     self.add_participant('alice')
     self.add_participant('bob')
     carl = self.add_participant('carl')
     carl.insert_into_communities(False, 'test', 'test')
コード例 #40
0
 def setUp(self):
     Harness.setUp(self)
     self.make_participant("team", claimed_time='now')
     self.make_participant("alice", claimed_time='now')
コード例 #41
0
 def setUp(self):
     Harness.setUp(self)
     self.bar = self.make_participant('bar', is_admin=True)
コード例 #42
0
ファイル: test_history.py プロジェクト: augmen/gratipay.com
 def setUp(self):
     Harness.setUp(self)
     make_history(self)
コード例 #43
0
 def setUp(self):
     Harness.setUp(self)
     self.make_participant("team", claimed_time=utcnow(), number='plural')
     self.make_participant("alice", claimed_time=utcnow())
コード例 #44
0
ファイル: test_stats.py プロジェクト: augmen/gratipay.com
 def setUp(self):
     Harness.setUp(self)
     simplate = self.client.load_resource(b'/about/stats.html')
     self.commaize = simplate.pages[0]['commaize']
コード例 #45
0
 def setUp(self):
     Harness.setUp(self)
     self._old_base_url = self.client.website.base_url
     self.client.website.base_url = "https://gratipay.com"
コード例 #46
0
 def setUp(self):
     Harness.setUp(self)
     self.make_participant("team", claimed_time='now')
     self.make_participant("alice", claimed_time='now')
コード例 #47
0
ファイル: email.py プロジェクト: rpanczer/gratipay.com
 def setUp(self):
     Harness.setUp(self)
     self.__sleep_for = self.app.email_queue.sleep_for
     self.app.email_queue.sleep_for = 0
コード例 #48
0
ファイル: email.py プロジェクト: cyberjacob/www.gittip.com
 def setUp(self):
     Harness.setUp(self)
     self.__sleep_for = self.app.email_queue.sleep_for
     self.app.email_queue.sleep_for = 0