2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# Copyright 2023 © AE UTBM
|
|
|
|
# ae@utbm.fr / ae.info@utbm.fr
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# This file is part of the website of the UTBM Student Association (AE UTBM),
|
|
|
|
# https://ae.utbm.fr.
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2024-09-22 23:37:25 +00:00
|
|
|
# You can find the source code of the website at https://github.com/ae-utbm/sith
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
2023-04-04 16:39:45 +00:00
|
|
|
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
|
2024-09-23 08:25:27 +00:00
|
|
|
# SEE : https://raw.githubusercontent.com/ae-utbm/sith/master/LICENSE
|
2023-04-04 16:39:45 +00:00
|
|
|
# OR WITHIN THE LOCAL FILE "LICENSE"
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
|
|
|
#
|
2022-11-28 16:03:46 +00:00
|
|
|
import json
|
2017-05-20 12:27:13 +00:00
|
|
|
import re
|
2022-11-23 11:23:17 +00:00
|
|
|
import string
|
2024-10-09 22:06:22 +00:00
|
|
|
from datetime import timedelta
|
2017-05-20 12:27:13 +00:00
|
|
|
|
2024-07-27 22:09:39 +00:00
|
|
|
import pytest
|
2024-10-09 22:06:22 +00:00
|
|
|
from django.conf import settings
|
2024-08-01 13:47:41 +00:00
|
|
|
from django.core.cache import cache
|
2024-07-27 22:09:39 +00:00
|
|
|
from django.test import Client, TestCase
|
2019-10-06 11:28:56 +00:00
|
|
|
from django.urls import reverse
|
2023-03-24 14:32:05 +00:00
|
|
|
from django.utils import timezone
|
2024-10-09 22:06:22 +00:00
|
|
|
from django.utils.timezone import now
|
|
|
|
from freezegun import freeze_time
|
2024-08-01 13:47:41 +00:00
|
|
|
from model_bakery import baker
|
2017-05-20 12:27:13 +00:00
|
|
|
|
2024-08-01 13:47:41 +00:00
|
|
|
from club.models import Club, Membership
|
|
|
|
from core.baker_recipes import subscriber_user
|
2017-05-20 12:27:13 +00:00
|
|
|
from core.models import User
|
2024-10-09 22:06:22 +00:00
|
|
|
from counter.models import (
|
|
|
|
BillingInfo,
|
|
|
|
Counter,
|
|
|
|
Customer,
|
|
|
|
Permanency,
|
|
|
|
Product,
|
|
|
|
Selling,
|
|
|
|
)
|
2017-05-20 12:27:13 +00:00
|
|
|
|
|
|
|
|
2024-07-23 22:39:26 +00:00
|
|
|
class TestCounter(TestCase):
|
2023-05-02 09:00:23 +00:00
|
|
|
@classmethod
|
|
|
|
def setUpTestData(cls):
|
|
|
|
cls.skia = User.objects.filter(username="skia").first()
|
|
|
|
cls.sli = User.objects.filter(username="sli").first()
|
|
|
|
cls.krophil = User.objects.filter(username="krophil").first()
|
|
|
|
cls.mde = Counter.objects.filter(name="MDE").first()
|
|
|
|
cls.foyer = Counter.objects.get(id=2)
|
2017-05-20 12:27:13 +00:00
|
|
|
|
|
|
|
def test_full_click(self):
|
2023-01-10 21:26:46 +00:00
|
|
|
self.client.post(
|
2018-10-04 19:29:19 +00:00
|
|
|
reverse("counter:login", kwargs={"counter_id": self.mde.id}),
|
|
|
|
{"username": self.skia.username, "password": "plop"},
|
|
|
|
)
|
2017-06-02 15:27:56 +00:00
|
|
|
response = self.client.get(
|
2018-10-04 19:29:19 +00:00
|
|
|
reverse("counter:details", kwargs={"counter_id": self.mde.id})
|
|
|
|
)
|
2017-06-02 15:27:56 +00:00
|
|
|
|
2024-06-26 17:10:24 +00:00
|
|
|
assert 'class="link-button">S' Kia</button>' in str(response.content)
|
2017-06-02 15:27:56 +00:00
|
|
|
|
|
|
|
counter_token = re.search(
|
2018-10-04 19:29:19 +00:00
|
|
|
r'name="counter_token" value="([^"]*)"', str(response.content)
|
|
|
|
).group(1)
|
|
|
|
|
|
|
|
response = self.client.post(
|
|
|
|
reverse("counter:details", kwargs={"counter_id": self.mde.id}),
|
|
|
|
{"code": "4000k", "counter_token": counter_token},
|
|
|
|
)
|
2023-01-10 21:26:46 +00:00
|
|
|
counter_url = response.get("location")
|
2018-10-04 19:29:19 +00:00
|
|
|
response = self.client.get(response.get("location"))
|
2024-06-26 17:10:24 +00:00
|
|
|
assert ">Richard Batsbak</" in str(response.content)
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2022-11-28 16:03:46 +00:00
|
|
|
self.client.post(
|
2023-01-10 21:26:46 +00:00
|
|
|
counter_url,
|
2018-10-04 19:29:19 +00:00
|
|
|
{
|
|
|
|
"action": "refill",
|
2021-09-25 18:48:07 +00:00
|
|
|
"amount": "5",
|
2018-10-04 19:29:19 +00:00
|
|
|
"payment_method": "CASH",
|
|
|
|
"bank": "OTHER",
|
|
|
|
},
|
|
|
|
)
|
2023-01-10 21:26:46 +00:00
|
|
|
self.client.post(counter_url, "action=code&code=BARB", content_type="text/xml")
|
|
|
|
self.client.post(
|
|
|
|
counter_url, "action=add_product&product_id=4", content_type="text/xml"
|
|
|
|
)
|
|
|
|
self.client.post(
|
|
|
|
counter_url, "action=del_product&product_id=4", content_type="text/xml"
|
|
|
|
)
|
|
|
|
self.client.post(
|
|
|
|
counter_url, "action=code&code=2xdeco", content_type="text/xml"
|
|
|
|
)
|
|
|
|
self.client.post(
|
|
|
|
counter_url, "action=code&code=1xbarb", content_type="text/xml"
|
|
|
|
)
|
|
|
|
response = self.client.post(
|
|
|
|
counter_url, "action=code&code=fin", content_type="text/xml"
|
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
|
|
|
|
response_get = self.client.get(response.get("location"))
|
2021-09-25 18:48:07 +00:00
|
|
|
response_content = response_get.content.decode("utf-8")
|
2024-06-26 17:10:24 +00:00
|
|
|
assert "2 x Barbar" in str(response_content)
|
|
|
|
assert "2 x Déconsigne Eco-cup" in str(response_content)
|
|
|
|
assert "<p>Client : Richard Batsbak - Nouveau montant : 3.60" in str(
|
|
|
|
response_content
|
2018-10-04 19:29:19 +00:00
|
|
|
)
|
2016-03-28 12:54:35 +00:00
|
|
|
|
2022-11-28 16:03:46 +00:00
|
|
|
self.client.post(
|
2022-05-05 21:24:08 +00:00
|
|
|
reverse("counter:login", kwargs={"counter_id": self.mde.id}),
|
|
|
|
{"username": self.sli.username, "password": "plop"},
|
|
|
|
)
|
|
|
|
|
|
|
|
response = self.client.post(
|
2023-01-10 21:26:46 +00:00
|
|
|
counter_url,
|
2022-05-05 21:24:08 +00:00
|
|
|
{
|
|
|
|
"action": "refill",
|
|
|
|
"amount": "5",
|
|
|
|
"payment_method": "CASH",
|
|
|
|
"bank": "OTHER",
|
|
|
|
},
|
|
|
|
)
|
2024-06-26 17:10:24 +00:00
|
|
|
assert response.status_code == 200
|
2022-05-05 21:24:08 +00:00
|
|
|
|
2023-01-10 21:26:46 +00:00
|
|
|
self.client.post(
|
2022-05-05 21:24:08 +00:00
|
|
|
reverse("counter:login", kwargs={"counter_id": self.foyer.id}),
|
|
|
|
{"username": self.krophil.username, "password": "plop"},
|
|
|
|
)
|
|
|
|
|
|
|
|
response = self.client.get(
|
|
|
|
reverse("counter:details", kwargs={"counter_id": self.foyer.id})
|
|
|
|
)
|
|
|
|
|
|
|
|
counter_token = re.search(
|
|
|
|
r'name="counter_token" value="([^"]*)"', str(response.content)
|
|
|
|
).group(1)
|
|
|
|
|
|
|
|
response = self.client.post(
|
|
|
|
reverse("counter:details", kwargs={"counter_id": self.foyer.id}),
|
|
|
|
{"code": "4000k", "counter_token": counter_token},
|
|
|
|
)
|
2023-01-10 21:26:46 +00:00
|
|
|
counter_url = response.get("location")
|
2022-05-05 21:24:08 +00:00
|
|
|
|
|
|
|
response = self.client.post(
|
2023-01-10 21:26:46 +00:00
|
|
|
counter_url,
|
2022-05-05 21:24:08 +00:00
|
|
|
{
|
|
|
|
"action": "refill",
|
|
|
|
"amount": "5",
|
|
|
|
"payment_method": "CASH",
|
|
|
|
"bank": "OTHER",
|
|
|
|
},
|
|
|
|
)
|
2024-06-26 17:10:24 +00:00
|
|
|
assert response.status_code == 200
|
2022-05-05 21:24:08 +00:00
|
|
|
|
2022-12-17 15:31:12 +00:00
|
|
|
def test_annotate_has_barman_queryset(self):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Test if the custom queryset method `annotate_has_barman` works as intended."""
|
2024-06-26 17:10:24 +00:00
|
|
|
self.sli.counters.set([self.foyer, self.mde])
|
2022-12-17 15:31:12 +00:00
|
|
|
counters = Counter.objects.annotate_has_barman(self.sli)
|
|
|
|
for counter in counters:
|
|
|
|
if counter.name in ("Foyer", "MDE"):
|
2024-06-26 17:10:24 +00:00
|
|
|
assert counter.has_annotated_barman
|
2022-12-17 15:31:12 +00:00
|
|
|
else:
|
2024-06-26 17:10:24 +00:00
|
|
|
assert not counter.has_annotated_barman
|
2022-12-17 15:31:12 +00:00
|
|
|
|
2017-05-14 10:54:26 +00:00
|
|
|
|
2024-07-23 22:39:26 +00:00
|
|
|
class TestCounterStats(TestCase):
|
2023-03-24 14:32:05 +00:00
|
|
|
@classmethod
|
2023-05-02 09:00:23 +00:00
|
|
|
def setUpTestData(cls):
|
2024-06-26 17:10:24 +00:00
|
|
|
cls.counter = Counter.objects.get(id=2)
|
2023-03-24 14:32:05 +00:00
|
|
|
cls.krophil = User.objects.get(username="krophil")
|
|
|
|
cls.skia = User.objects.get(username="skia")
|
|
|
|
cls.sli = User.objects.get(username="sli")
|
|
|
|
cls.root = User.objects.get(username="root")
|
|
|
|
cls.subscriber = User.objects.get(username="subscriber")
|
|
|
|
cls.old_subscriber = User.objects.get(username="old_subscriber")
|
2023-05-02 09:00:23 +00:00
|
|
|
cls.counter.sellers.add(cls.sli, cls.root, cls.skia, cls.krophil)
|
2023-03-24 14:32:05 +00:00
|
|
|
|
|
|
|
barbar = Product.objects.get(code="BARB")
|
|
|
|
|
|
|
|
# remove everything to make sure the fixtures bring no side effect
|
|
|
|
Permanency.objects.all().delete()
|
|
|
|
Selling.objects.all().delete()
|
|
|
|
|
|
|
|
now = timezone.now()
|
|
|
|
# total of sli : 5 hours
|
|
|
|
Permanency.objects.create(
|
|
|
|
user=cls.sli, start=now, end=now + timedelta(hours=1), counter=cls.counter
|
|
|
|
)
|
|
|
|
Permanency.objects.create(
|
|
|
|
user=cls.sli,
|
|
|
|
start=now + timedelta(hours=4),
|
|
|
|
end=now + timedelta(hours=6),
|
|
|
|
counter=cls.counter,
|
|
|
|
)
|
|
|
|
Permanency.objects.create(
|
|
|
|
user=cls.sli,
|
|
|
|
start=now + timedelta(hours=7),
|
|
|
|
end=now + timedelta(hours=9),
|
|
|
|
counter=cls.counter,
|
|
|
|
)
|
|
|
|
|
|
|
|
# total of skia : 16 days, 2 hours, 35 minutes and 54 seconds
|
|
|
|
Permanency.objects.create(
|
|
|
|
user=cls.skia, start=now, end=now + timedelta(hours=1), counter=cls.counter
|
|
|
|
)
|
|
|
|
Permanency.objects.create(
|
|
|
|
user=cls.skia,
|
|
|
|
start=now + timedelta(days=4, hours=1),
|
|
|
|
end=now + timedelta(days=20, hours=2, minutes=35, seconds=54),
|
|
|
|
counter=cls.counter,
|
|
|
|
)
|
|
|
|
|
|
|
|
# total of root : 1 hour + 20 hours (but the 20 hours were on last year)
|
|
|
|
Permanency.objects.create(
|
|
|
|
user=cls.root,
|
|
|
|
start=now + timedelta(days=5),
|
|
|
|
end=now + timedelta(days=5, hours=1),
|
|
|
|
counter=cls.counter,
|
|
|
|
)
|
|
|
|
Permanency.objects.create(
|
|
|
|
user=cls.root,
|
|
|
|
start=now - timedelta(days=300, hours=20),
|
|
|
|
end=now - timedelta(days=300),
|
|
|
|
counter=cls.counter,
|
|
|
|
)
|
|
|
|
|
|
|
|
# total of krophil : 0 hour
|
|
|
|
s = Selling(
|
|
|
|
label=barbar.name,
|
|
|
|
product=barbar,
|
2024-10-09 22:06:22 +00:00
|
|
|
club=Club.objects.get(name=settings.SITH_MAIN_CLUB["name"]),
|
2023-03-24 14:32:05 +00:00
|
|
|
counter=cls.counter,
|
|
|
|
unit_price=2,
|
|
|
|
seller=cls.skia,
|
|
|
|
)
|
|
|
|
|
|
|
|
krophil_customer = Customer.get_or_create(cls.krophil)[0]
|
|
|
|
sli_customer = Customer.get_or_create(cls.sli)[0]
|
|
|
|
skia_customer = Customer.get_or_create(cls.skia)[0]
|
|
|
|
root_customer = Customer.get_or_create(cls.root)[0]
|
|
|
|
|
|
|
|
# moderate drinker. Total : 100 €
|
|
|
|
s.quantity = 50
|
|
|
|
s.customer = krophil_customer
|
|
|
|
s.save(allow_negative=True)
|
|
|
|
|
|
|
|
# Sli is a drunkard. Total : 2000 €
|
|
|
|
s.quantity = 100
|
|
|
|
s.customer = sli_customer
|
|
|
|
for _ in range(10):
|
|
|
|
# little trick to make sure the instance is duplicated in db
|
|
|
|
s.pk = None
|
|
|
|
s.save(allow_negative=True) # save ten different sales
|
|
|
|
|
|
|
|
# Skia is a heavy drinker too. Total : 1000 €
|
|
|
|
s.customer = skia_customer
|
|
|
|
for _ in range(5):
|
|
|
|
s.pk = None
|
|
|
|
s.save(allow_negative=True)
|
2019-05-28 14:38:18 +00:00
|
|
|
|
2023-03-24 14:32:05 +00:00
|
|
|
# Root is quite an abstemious one. Total : 2 €
|
|
|
|
s.pk = None
|
|
|
|
s.quantity = 1
|
|
|
|
s.customer = root_customer
|
|
|
|
s.save(allow_negative=True)
|
|
|
|
|
|
|
|
def test_not_authenticated_user_fail(self):
|
2019-05-28 14:38:18 +00:00
|
|
|
# Test with not login user
|
|
|
|
response = self.client.get(reverse("counter:stats", args=[self.counter.id]))
|
2024-06-26 17:10:24 +00:00
|
|
|
assert response.status_code == 403
|
2019-05-28 14:38:18 +00:00
|
|
|
|
2023-03-24 14:32:05 +00:00
|
|
|
def test_unauthorized_user_fails(self):
|
2024-06-26 17:10:24 +00:00
|
|
|
self.client.force_login(User.objects.get(username="public"))
|
2023-03-24 14:32:05 +00:00
|
|
|
response = self.client.get(reverse("counter:stats", args=[self.counter.id]))
|
2024-06-26 17:10:24 +00:00
|
|
|
assert response.status_code == 403
|
2023-03-24 14:32:05 +00:00
|
|
|
|
|
|
|
def test_get_total_sales(self):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Test the result of the Counter.get_total_sales() method."""
|
2024-06-26 17:10:24 +00:00
|
|
|
assert self.counter.get_total_sales() == 3102
|
2023-03-24 14:32:05 +00:00
|
|
|
|
|
|
|
def test_top_barmen(self):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Test the result of Counter.get_top_barmen() is correct."""
|
2024-06-26 17:10:24 +00:00
|
|
|
users = [self.skia, self.root, self.sli]
|
|
|
|
perm_times = [
|
|
|
|
timedelta(days=16, hours=2, minutes=35, seconds=54),
|
|
|
|
timedelta(hours=21),
|
|
|
|
timedelta(hours=5),
|
|
|
|
]
|
|
|
|
assert list(self.counter.get_top_barmen()) == [
|
2023-03-24 14:32:05 +00:00
|
|
|
{
|
2024-06-26 17:10:24 +00:00
|
|
|
"user": user.id,
|
|
|
|
"name": f"{user.first_name} {user.last_name}",
|
|
|
|
"promo": user.promo,
|
|
|
|
"nickname": user.nick_name,
|
|
|
|
"perm_sum": perm_time,
|
|
|
|
}
|
|
|
|
for user, perm_time in zip(users, perm_times)
|
|
|
|
]
|
2023-03-24 14:32:05 +00:00
|
|
|
|
|
|
|
def test_top_customer(self):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Test the result of Counter.get_top_customers() is correct."""
|
2024-06-26 17:10:24 +00:00
|
|
|
users = [self.sli, self.skia, self.krophil, self.root]
|
|
|
|
sale_amounts = [2000, 1000, 100, 2]
|
|
|
|
assert list(self.counter.get_top_customers()) == [
|
2023-03-24 14:32:05 +00:00
|
|
|
{
|
2024-06-26 17:10:24 +00:00
|
|
|
"user": user.id,
|
|
|
|
"name": f"{user.first_name} {user.last_name}",
|
|
|
|
"promo": user.promo,
|
|
|
|
"nickname": user.nick_name,
|
|
|
|
"selling_sum": sale_amount,
|
|
|
|
}
|
|
|
|
for user, sale_amount in zip(users, sale_amounts)
|
2023-09-07 21:11:58 +00:00
|
|
|
]
|
|
|
|
|
2019-05-28 14:38:18 +00:00
|
|
|
|
2024-07-27 22:09:39 +00:00
|
|
|
@pytest.mark.django_db
|
|
|
|
class TestBillingInfo:
|
|
|
|
@pytest.fixture
|
|
|
|
def payload(self):
|
|
|
|
return {
|
2022-11-28 16:03:46 +00:00
|
|
|
"first_name": "Subscribed",
|
|
|
|
"last_name": "User",
|
|
|
|
"address_1": "3, rue de Troyes",
|
|
|
|
"zip_code": "34301",
|
|
|
|
"city": "Sète",
|
|
|
|
"country": "FR",
|
2024-09-26 15:55:53 +00:00
|
|
|
"phone_number": "0612345678",
|
2022-11-28 16:03:46 +00:00
|
|
|
}
|
|
|
|
|
2024-07-27 22:09:39 +00:00
|
|
|
def test_edit_infos(self, client: Client, payload: dict):
|
|
|
|
user = subscriber_user.make()
|
|
|
|
baker.make(BillingInfo, customer=user.customer)
|
|
|
|
client.force_login(user)
|
|
|
|
response = client.put(
|
|
|
|
reverse("api:put_billing_info", args=[user.id]),
|
|
|
|
json.dumps(payload),
|
2022-11-28 16:03:46 +00:00
|
|
|
content_type="application/json",
|
|
|
|
)
|
2024-07-27 22:09:39 +00:00
|
|
|
user.refresh_from_db()
|
2022-11-28 16:03:46 +00:00
|
|
|
infos = BillingInfo.objects.get(customer__user=user)
|
2024-06-26 17:10:24 +00:00
|
|
|
assert response.status_code == 200
|
|
|
|
assert hasattr(user.customer, "billing_infos")
|
|
|
|
assert infos.customer == user.customer
|
2024-07-27 22:09:39 +00:00
|
|
|
for key, val in payload.items():
|
|
|
|
assert getattr(infos, key) == val
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"user_maker", [subscriber_user.make, lambda: baker.make(User)]
|
|
|
|
)
|
|
|
|
@pytest.mark.django_db
|
|
|
|
def test_create_infos(self, client: Client, user_maker, payload):
|
|
|
|
user = user_maker()
|
|
|
|
client.force_login(user)
|
|
|
|
assert not BillingInfo.objects.filter(customer__user=user).exists()
|
|
|
|
response = client.put(
|
|
|
|
reverse("api:put_billing_info", args=[user.id]),
|
|
|
|
json.dumps(payload),
|
2022-11-28 16:03:46 +00:00
|
|
|
content_type="application/json",
|
|
|
|
)
|
2024-06-26 17:10:24 +00:00
|
|
|
assert response.status_code == 200
|
2024-07-27 22:09:39 +00:00
|
|
|
user.refresh_from_db()
|
2024-06-26 17:10:24 +00:00
|
|
|
assert hasattr(user, "customer")
|
2022-11-28 16:03:46 +00:00
|
|
|
infos = BillingInfo.objects.get(customer__user=user)
|
2024-07-27 22:09:39 +00:00
|
|
|
assert hasattr(user.customer, "billing_infos")
|
|
|
|
assert infos.customer == user.customer
|
|
|
|
for key, val in payload.items():
|
|
|
|
assert getattr(infos, key) == val
|
|
|
|
|
2024-09-26 15:55:53 +00:00
|
|
|
def test_invalid_data(self, client: Client, payload: dict[str, str]):
|
2024-07-27 22:09:39 +00:00
|
|
|
user = subscriber_user.make()
|
|
|
|
client.force_login(user)
|
2022-11-28 16:03:46 +00:00
|
|
|
# address_1, zip_code and country are missing
|
2024-07-27 22:09:39 +00:00
|
|
|
del payload["city"]
|
|
|
|
response = client.put(
|
|
|
|
reverse("api:put_billing_info", args=[user.id]),
|
2022-11-28 16:03:46 +00:00
|
|
|
json.dumps(payload),
|
|
|
|
content_type="application/json",
|
|
|
|
)
|
2024-07-27 22:09:39 +00:00
|
|
|
assert response.status_code == 422
|
|
|
|
user.customer.refresh_from_db()
|
2024-06-26 17:10:24 +00:00
|
|
|
assert not hasattr(user.customer, "billing_infos")
|
2022-11-28 16:03:46 +00:00
|
|
|
|
2024-07-27 22:09:39 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
("operator_maker", "expected_code"),
|
|
|
|
[
|
|
|
|
(subscriber_user.make, 403),
|
|
|
|
(lambda: baker.make(User), 403),
|
|
|
|
(lambda: baker.make(User, is_superuser=True), 200),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
def test_edit_other_user(
|
|
|
|
self, client: Client, operator_maker, expected_code: int, payload: dict
|
|
|
|
):
|
|
|
|
user = subscriber_user.make()
|
|
|
|
client.force_login(operator_maker())
|
|
|
|
baker.make(BillingInfo, customer=user.customer)
|
|
|
|
response = client.put(
|
|
|
|
reverse("api:put_billing_info", args=[user.id]),
|
2022-11-28 16:03:46 +00:00
|
|
|
json.dumps(payload),
|
|
|
|
content_type="application/json",
|
|
|
|
)
|
2024-07-27 22:09:39 +00:00
|
|
|
assert response.status_code == expected_code
|
2022-11-28 16:03:46 +00:00
|
|
|
|
2024-09-26 15:55:53 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"phone_number",
|
|
|
|
["+33612345678", "0612345678", "06 12 34 56 78", "06-12-34-56-78"],
|
|
|
|
)
|
|
|
|
def test_phone_number_format(
|
|
|
|
self, client: Client, payload: dict, phone_number: str
|
|
|
|
):
|
|
|
|
"""Test that various formats of phone numbers are accepted."""
|
|
|
|
user = subscriber_user.make()
|
|
|
|
client.force_login(user)
|
|
|
|
payload["phone_number"] = phone_number
|
|
|
|
response = client.put(
|
|
|
|
reverse("api:put_billing_info", args=[user.id]),
|
|
|
|
json.dumps(payload),
|
|
|
|
content_type="application/json",
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
|
|
|
infos = BillingInfo.objects.get(customer__user=user)
|
|
|
|
assert infos.phone_number == "0612345678"
|
|
|
|
assert infos.phone_number.country_code == 33
|
|
|
|
|
|
|
|
def test_foreign_phone_number(self, client: Client, payload: dict):
|
|
|
|
"""Test that a foreign phone number is accepted."""
|
|
|
|
user = subscriber_user.make()
|
|
|
|
client.force_login(user)
|
|
|
|
payload["phone_number"] = "+49612345678"
|
|
|
|
response = client.put(
|
|
|
|
reverse("api:put_billing_info", args=[user.id]),
|
|
|
|
json.dumps(payload),
|
|
|
|
content_type="application/json",
|
|
|
|
)
|
|
|
|
assert response.status_code == 200
|
|
|
|
infos = BillingInfo.objects.get(customer__user=user)
|
|
|
|
assert infos.phone_number.as_national == "06123 45678"
|
|
|
|
assert infos.phone_number.country_code == 49
|
|
|
|
|
2024-09-27 20:35:03 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"phone_number", ["061234567a", "06 12 34 56", "061234567879", "azertyuiop"]
|
|
|
|
)
|
|
|
|
def test_invalid_phone_number(
|
|
|
|
self, client: Client, payload: dict, phone_number: str
|
|
|
|
):
|
|
|
|
"""Test that invalid phone numbers are rejected."""
|
|
|
|
user = subscriber_user.make()
|
|
|
|
client.force_login(user)
|
|
|
|
payload["phone_number"] = phone_number
|
|
|
|
response = client.put(
|
|
|
|
reverse("api:put_billing_info", args=[user.id]),
|
|
|
|
json.dumps(payload),
|
|
|
|
content_type="application/json",
|
|
|
|
)
|
|
|
|
assert response.status_code == 422
|
|
|
|
assert not BillingInfo.objects.filter(customer__user=user).exists()
|
|
|
|
|
2022-11-28 16:03:46 +00:00
|
|
|
|
2024-07-23 22:39:26 +00:00
|
|
|
class TestBarmanConnection(TestCase):
|
2024-06-26 17:10:24 +00:00
|
|
|
@classmethod
|
|
|
|
def setUpTestData(cls):
|
|
|
|
cls.krophil = User.objects.get(username="krophil")
|
|
|
|
cls.skia = User.objects.get(username="skia")
|
|
|
|
cls.skia.customer.account = 800
|
|
|
|
cls.krophil.customer.save()
|
|
|
|
cls.skia.customer.save()
|
2017-05-14 10:54:26 +00:00
|
|
|
|
2024-06-26 17:10:24 +00:00
|
|
|
cls.counter = Counter.objects.get(id=2)
|
2017-05-14 10:54:26 +00:00
|
|
|
|
|
|
|
def test_barman_granted(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
self.client.post(
|
|
|
|
reverse("counter:login", args=[self.counter.id]),
|
|
|
|
{"username": "krophil", "password": "plop"},
|
|
|
|
)
|
2024-06-26 17:10:24 +00:00
|
|
|
response = self.client.get(reverse("counter:details", args=[self.counter.id]))
|
2017-05-14 10:54:26 +00:00
|
|
|
|
2024-06-26 17:10:24 +00:00
|
|
|
assert "<p>Entrez un code client : </p>" in str(response.content)
|
2017-05-14 10:54:26 +00:00
|
|
|
|
|
|
|
def test_counters_list_barmen(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
self.client.post(
|
|
|
|
reverse("counter:login", args=[self.counter.id]),
|
|
|
|
{"username": "krophil", "password": "plop"},
|
|
|
|
)
|
2024-06-26 17:10:24 +00:00
|
|
|
response = self.client.get(reverse("counter:activity", args=[self.counter.id]))
|
2017-06-02 15:27:56 +00:00
|
|
|
|
2024-06-26 17:10:24 +00:00
|
|
|
assert '<li><a href="/user/10/">Kro Phil'</a></li>' in str(response.content)
|
2017-06-02 15:27:56 +00:00
|
|
|
|
2017-05-14 10:54:26 +00:00
|
|
|
def test_barman_denied(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
self.client.post(
|
|
|
|
reverse("counter:login", args=[self.counter.id]),
|
|
|
|
{"username": "skia", "password": "plop"},
|
|
|
|
)
|
2017-06-02 15:27:56 +00:00
|
|
|
response_get = self.client.get(
|
2018-10-04 19:29:19 +00:00
|
|
|
reverse("counter:details", args=[self.counter.id])
|
|
|
|
)
|
2017-06-02 15:27:56 +00:00
|
|
|
|
2024-06-26 17:10:24 +00:00
|
|
|
assert "<p>Merci de vous identifier</p>" in str(response_get.content)
|
2017-05-14 10:54:26 +00:00
|
|
|
|
|
|
|
def test_counters_list_no_barmen(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
self.client.post(
|
|
|
|
reverse("counter:login", args=[self.counter.id]),
|
|
|
|
{"username": "krophil", "password": "plop"},
|
|
|
|
)
|
2024-06-26 17:10:24 +00:00
|
|
|
response = self.client.get(reverse("counter:activity", args=[self.counter.id]))
|
2017-06-02 15:27:56 +00:00
|
|
|
|
2024-06-26 17:10:24 +00:00
|
|
|
assert not '<li><a href="/user/1/">S' Kia</a></li>' in str(response.content)
|
2019-05-14 13:13:14 +00:00
|
|
|
|
|
|
|
|
2024-10-09 22:06:22 +00:00
|
|
|
@pytest.mark.django_db
|
|
|
|
def test_barman_timeout():
|
|
|
|
"""Test that barmen timeout is well managed."""
|
|
|
|
bar = baker.make(Counter, type="BAR")
|
|
|
|
user = baker.make(User)
|
|
|
|
bar.sellers.add(user)
|
|
|
|
baker.make(Permanency, counter=bar, user=user, start=now())
|
|
|
|
|
|
|
|
qs = Counter.objects.annotate_is_open().filter(pk=bar.pk)
|
|
|
|
|
|
|
|
bar = qs[0]
|
|
|
|
assert bar.is_open
|
|
|
|
assert bar.barmen_list == [user]
|
|
|
|
qs.handle_timeout() # handling timeout before the actual timeout should be no-op
|
|
|
|
assert qs[0].is_open
|
|
|
|
with freeze_time() as frozen_time:
|
|
|
|
frozen_time.tick(timedelta(minutes=settings.SITH_BARMAN_TIMEOUT + 1))
|
|
|
|
qs.handle_timeout()
|
|
|
|
bar = qs[0]
|
|
|
|
assert not bar.is_open
|
|
|
|
assert bar.barmen_list == []
|
|
|
|
|
|
|
|
|
2024-07-23 22:39:26 +00:00
|
|
|
class TestStudentCard(TestCase):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Tests for adding and deleting Stundent Cards
|
|
|
|
Test that an user can be found with it's student card.
|
2019-05-14 13:13:14 +00:00
|
|
|
"""
|
|
|
|
|
2024-06-26 17:10:24 +00:00
|
|
|
@classmethod
|
|
|
|
def setUpTestData(cls):
|
|
|
|
cls.krophil = User.objects.get(username="krophil")
|
|
|
|
cls.sli = User.objects.get(username="sli")
|
|
|
|
cls.skia = User.objects.get(username="skia")
|
|
|
|
cls.root = User.objects.get(username="root")
|
2019-05-14 13:13:14 +00:00
|
|
|
|
2024-06-26 17:10:24 +00:00
|
|
|
cls.counter = Counter.objects.get(id=2)
|
2019-05-14 13:13:14 +00:00
|
|
|
|
2024-06-26 17:10:24 +00:00
|
|
|
def setUp(self):
|
2019-05-14 13:13:14 +00:00
|
|
|
# Auto login on counter
|
|
|
|
self.client.post(
|
|
|
|
reverse("counter:login", args=[self.counter.id]),
|
|
|
|
{"username": "krophil", "password": "plop"},
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_search_user_with_student_card(self):
|
|
|
|
response = self.client.post(
|
|
|
|
reverse("counter:details", args=[self.counter.id]),
|
|
|
|
{"code": "9A89B82018B0A0"},
|
|
|
|
)
|
|
|
|
|
2024-06-26 17:10:24 +00:00
|
|
|
assert response.url == reverse(
|
|
|
|
"counter:click",
|
|
|
|
kwargs={"counter_id": self.counter.id, "user_id": self.sli.id},
|
2019-05-14 13:13:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
def test_add_student_card_from_counter(self):
|
2019-05-24 06:38:15 +00:00
|
|
|
# Test card with mixed letters and numbers
|
2019-05-14 13:13:14 +00:00
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:click",
|
|
|
|
kwargs={"counter_id": self.counter.id, "user_id": self.sli.id},
|
|
|
|
),
|
|
|
|
{"student_card_uid": "8B90734A802A8F", "action": "add_student_card"},
|
|
|
|
)
|
|
|
|
self.assertContains(response, text="8B90734A802A8F")
|
|
|
|
|
2019-05-24 06:38:15 +00:00
|
|
|
# Test card with only numbers
|
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:click",
|
|
|
|
kwargs={"counter_id": self.counter.id, "user_id": self.sli.id},
|
|
|
|
),
|
|
|
|
{"student_card_uid": "04786547890123", "action": "add_student_card"},
|
|
|
|
)
|
|
|
|
self.assertContains(response, text="04786547890123")
|
|
|
|
|
|
|
|
# Test card with only letters
|
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:click",
|
|
|
|
kwargs={"counter_id": self.counter.id, "user_id": self.sli.id},
|
|
|
|
),
|
|
|
|
{"student_card_uid": "ABCAAAFAAFAAAB", "action": "add_student_card"},
|
|
|
|
)
|
|
|
|
self.assertContains(response, text="ABCAAAFAAFAAAB")
|
|
|
|
|
2019-05-14 13:13:14 +00:00
|
|
|
def test_add_student_card_from_counter_fail(self):
|
2019-05-14 13:51:14 +00:00
|
|
|
# UID too short
|
2019-05-14 13:13:14 +00:00
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:click",
|
|
|
|
kwargs={"counter_id": self.counter.id, "user_id": self.sli.id},
|
|
|
|
),
|
|
|
|
{"student_card_uid": "8B90734A802A8", "action": "add_student_card"},
|
|
|
|
)
|
|
|
|
self.assertContains(
|
|
|
|
response, text="Ce n'est pas un UID de carte étudiante valide"
|
|
|
|
)
|
|
|
|
|
2019-05-14 13:51:14 +00:00
|
|
|
# UID too long
|
2019-05-14 13:13:14 +00:00
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:click",
|
|
|
|
kwargs={"counter_id": self.counter.id, "user_id": self.sli.id},
|
|
|
|
),
|
|
|
|
{"student_card_uid": "8B90734A802A8FA", "action": "add_student_card"},
|
|
|
|
)
|
|
|
|
self.assertContains(
|
|
|
|
response, text="Ce n'est pas un UID de carte étudiante valide"
|
|
|
|
)
|
|
|
|
|
2019-05-14 13:51:14 +00:00
|
|
|
# Test with already existing card
|
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:click",
|
|
|
|
kwargs={"counter_id": self.counter.id, "user_id": self.sli.id},
|
|
|
|
),
|
|
|
|
{"student_card_uid": "9A89B82018B0A0", "action": "add_student_card"},
|
|
|
|
)
|
|
|
|
self.assertContains(
|
|
|
|
response, text="Ce n'est pas un UID de carte étudiante valide"
|
|
|
|
)
|
|
|
|
|
|
|
|
# Test with lowercase
|
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:click",
|
|
|
|
kwargs={"counter_id": self.counter.id, "user_id": self.sli.id},
|
|
|
|
),
|
|
|
|
{"student_card_uid": "8b90734a802a9f", "action": "add_student_card"},
|
|
|
|
)
|
|
|
|
self.assertContains(
|
|
|
|
response, text="Ce n'est pas un UID de carte étudiante valide"
|
|
|
|
)
|
|
|
|
|
2019-05-24 06:38:15 +00:00
|
|
|
# Test with white spaces
|
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:click",
|
|
|
|
kwargs={"counter_id": self.counter.id, "user_id": self.sli.id},
|
|
|
|
),
|
|
|
|
{"student_card_uid": " ", "action": "add_student_card"},
|
|
|
|
)
|
|
|
|
self.assertContains(
|
|
|
|
response, text="Ce n'est pas un UID de carte étudiante valide"
|
|
|
|
)
|
|
|
|
|
2019-05-14 13:13:14 +00:00
|
|
|
def test_delete_student_card_with_owner(self):
|
2024-06-26 17:10:24 +00:00
|
|
|
self.client.force_login(self.sli)
|
2019-05-14 13:13:14 +00:00
|
|
|
self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:delete_student_card",
|
|
|
|
kwargs={
|
|
|
|
"customer_id": self.sli.customer.pk,
|
|
|
|
"card_id": self.sli.customer.student_cards.first().id,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
)
|
2024-06-26 17:10:24 +00:00
|
|
|
assert not self.sli.customer.student_cards.exists()
|
2019-05-14 13:13:14 +00:00
|
|
|
|
|
|
|
def test_delete_student_card_with_board_member(self):
|
2024-06-26 17:10:24 +00:00
|
|
|
self.client.force_login(self.skia)
|
2019-05-14 13:13:14 +00:00
|
|
|
self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:delete_student_card",
|
|
|
|
kwargs={
|
|
|
|
"customer_id": self.sli.customer.pk,
|
|
|
|
"card_id": self.sli.customer.student_cards.first().id,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
)
|
2024-06-26 17:10:24 +00:00
|
|
|
assert not self.sli.customer.student_cards.exists()
|
2019-05-14 13:13:14 +00:00
|
|
|
|
|
|
|
def test_delete_student_card_with_root(self):
|
2024-06-26 17:10:24 +00:00
|
|
|
self.client.force_login(self.root)
|
2019-05-14 13:13:14 +00:00
|
|
|
self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:delete_student_card",
|
|
|
|
kwargs={
|
|
|
|
"customer_id": self.sli.customer.pk,
|
|
|
|
"card_id": self.sli.customer.student_cards.first().id,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
)
|
2024-06-26 17:10:24 +00:00
|
|
|
assert not self.sli.customer.student_cards.exists()
|
2019-05-14 13:13:14 +00:00
|
|
|
|
|
|
|
def test_delete_student_card_fail(self):
|
2024-06-26 17:10:24 +00:00
|
|
|
self.client.force_login(self.krophil)
|
2019-05-14 13:13:14 +00:00
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:delete_student_card",
|
|
|
|
kwargs={
|
|
|
|
"customer_id": self.sli.customer.pk,
|
|
|
|
"card_id": self.sli.customer.student_cards.first().id,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
)
|
2024-06-26 17:10:24 +00:00
|
|
|
assert response.status_code == 403
|
|
|
|
assert self.sli.customer.student_cards.exists()
|
2019-05-14 13:13:14 +00:00
|
|
|
|
|
|
|
def test_add_student_card_from_user_preferences(self):
|
|
|
|
# Test with owner of the card
|
2024-06-26 17:10:24 +00:00
|
|
|
self.client.force_login(self.sli)
|
2019-05-14 13:13:14 +00:00
|
|
|
self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:add_student_card", kwargs={"customer_id": self.sli.customer.pk}
|
|
|
|
),
|
|
|
|
{"uid": "8B90734A802A8F"},
|
|
|
|
)
|
|
|
|
|
|
|
|
response = self.client.get(
|
|
|
|
reverse("core:user_prefs", kwargs={"user_id": self.sli.id})
|
|
|
|
)
|
|
|
|
self.assertContains(response, text="8B90734A802A8F")
|
|
|
|
|
|
|
|
# Test with board member
|
2024-06-26 17:10:24 +00:00
|
|
|
self.client.force_login(self.skia)
|
2019-05-14 13:13:14 +00:00
|
|
|
self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:add_student_card", kwargs={"customer_id": self.sli.customer.pk}
|
|
|
|
),
|
|
|
|
{"uid": "8B90734A802A8A"},
|
|
|
|
)
|
|
|
|
|
|
|
|
response = self.client.get(
|
|
|
|
reverse("core:user_prefs", kwargs={"user_id": self.sli.id})
|
|
|
|
)
|
|
|
|
self.assertContains(response, text="8B90734A802A8A")
|
|
|
|
|
2019-05-24 06:38:15 +00:00
|
|
|
# Test card with only numbers
|
|
|
|
self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:add_student_card", kwargs={"customer_id": self.sli.customer.pk}
|
|
|
|
),
|
|
|
|
{"uid": "04786547890123"},
|
|
|
|
)
|
|
|
|
response = self.client.get(
|
|
|
|
reverse("core:user_prefs", kwargs={"user_id": self.sli.id})
|
|
|
|
)
|
|
|
|
self.assertContains(response, text="04786547890123")
|
|
|
|
|
|
|
|
# Test card with only letters
|
|
|
|
self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:add_student_card", kwargs={"customer_id": self.sli.customer.pk}
|
|
|
|
),
|
|
|
|
{"uid": "ABCAAAFAAFAAAB"},
|
|
|
|
)
|
|
|
|
response = self.client.get(
|
|
|
|
reverse("core:user_prefs", kwargs={"user_id": self.sli.id})
|
|
|
|
)
|
|
|
|
self.assertContains(response, text="ABCAAAFAAFAAAB")
|
|
|
|
|
2019-05-14 13:13:14 +00:00
|
|
|
# Test with root
|
2024-06-26 17:10:24 +00:00
|
|
|
self.client.force_login(self.root)
|
2019-05-14 13:13:14 +00:00
|
|
|
self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:add_student_card", kwargs={"customer_id": self.sli.customer.pk}
|
|
|
|
),
|
|
|
|
{"uid": "8B90734A802A8B"},
|
|
|
|
)
|
|
|
|
|
|
|
|
response = self.client.get(
|
|
|
|
reverse("core:user_prefs", kwargs={"user_id": self.sli.id})
|
|
|
|
)
|
|
|
|
self.assertContains(response, text="8B90734A802A8B")
|
|
|
|
|
|
|
|
def test_add_student_card_from_user_preferences_fail(self):
|
2024-06-26 17:10:24 +00:00
|
|
|
self.client.force_login(self.sli)
|
2019-05-14 13:51:14 +00:00
|
|
|
# UID too short
|
2019-05-14 13:13:14 +00:00
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:add_student_card", kwargs={"customer_id": self.sli.customer.pk}
|
|
|
|
),
|
|
|
|
{"uid": "8B90734A802A8"},
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertContains(response, text="Cet UID est invalide")
|
|
|
|
|
2019-05-14 13:51:14 +00:00
|
|
|
# UID too long
|
2019-05-14 13:13:14 +00:00
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:add_student_card", kwargs={"customer_id": self.sli.customer.pk}
|
|
|
|
),
|
|
|
|
{"uid": "8B90734A802A8FA"},
|
|
|
|
)
|
|
|
|
self.assertContains(response, text="Cet UID est invalide")
|
|
|
|
|
2019-05-14 13:51:14 +00:00
|
|
|
# Test with already existing card
|
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:add_student_card", kwargs={"customer_id": self.sli.customer.pk}
|
|
|
|
),
|
|
|
|
{"uid": "9A89B82018B0A0"},
|
|
|
|
)
|
|
|
|
self.assertContains(
|
|
|
|
response, text="Un objet Student card avec ce champ Uid existe déjà."
|
|
|
|
)
|
|
|
|
|
|
|
|
# Test with lowercase
|
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:add_student_card", kwargs={"customer_id": self.sli.customer.pk}
|
|
|
|
),
|
|
|
|
{"uid": "8b90734a802a9f"},
|
|
|
|
)
|
|
|
|
self.assertContains(response, text="Cet UID est invalide")
|
|
|
|
|
2019-05-24 06:38:15 +00:00
|
|
|
# Test with white spaces
|
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:add_student_card", kwargs={"customer_id": self.sli.customer.pk}
|
|
|
|
),
|
2024-06-26 17:10:24 +00:00
|
|
|
{"uid": " " * 14},
|
2019-05-24 06:38:15 +00:00
|
|
|
)
|
|
|
|
self.assertContains(response, text="Cet UID est invalide")
|
|
|
|
|
2019-05-14 13:13:14 +00:00
|
|
|
# Test with unauthorized user
|
2024-06-26 17:10:24 +00:00
|
|
|
self.client.force_login(self.krophil)
|
2019-05-14 13:13:14 +00:00
|
|
|
response = self.client.post(
|
|
|
|
reverse(
|
|
|
|
"counter:add_student_card", kwargs={"customer_id": self.sli.customer.pk}
|
|
|
|
),
|
|
|
|
{"uid": "8B90734A802A8F"},
|
|
|
|
)
|
2024-06-26 17:10:24 +00:00
|
|
|
assert response.status_code == 403
|
2022-11-28 16:03:46 +00:00
|
|
|
|
|
|
|
|
2024-07-23 22:39:26 +00:00
|
|
|
class TestCustomerAccountId(TestCase):
|
2024-06-26 17:10:24 +00:00
|
|
|
@classmethod
|
|
|
|
def setUpTestData(cls):
|
|
|
|
cls.user_a = User.objects.create(
|
2022-11-23 11:23:17 +00:00
|
|
|
username="a", password="plop", email="a.a@a.fr"
|
|
|
|
)
|
2022-11-28 16:03:46 +00:00
|
|
|
user_b = User.objects.create(username="b", password="plop", email="b.b@b.fr")
|
|
|
|
user_c = User.objects.create(username="c", password="plop", email="c.c@c.fr")
|
2024-06-26 17:10:24 +00:00
|
|
|
Customer.objects.create(user=cls.user_a, amount=10, account_id="1111a")
|
2022-11-28 16:03:46 +00:00
|
|
|
Customer.objects.create(user=user_b, amount=0, account_id="9999z")
|
|
|
|
Customer.objects.create(user=user_c, amount=0, account_id="12345f")
|
|
|
|
|
|
|
|
def test_create_customer(self):
|
|
|
|
user_d = User.objects.create(username="d", password="plop")
|
2022-11-23 11:23:17 +00:00
|
|
|
customer, created = Customer.get_or_create(user_d)
|
|
|
|
account_id = customer.account_id
|
|
|
|
number = account_id[:-1]
|
2024-06-26 17:10:24 +00:00
|
|
|
assert created is True
|
|
|
|
assert number == "12346"
|
|
|
|
assert 6 == len(account_id)
|
|
|
|
assert account_id[-1] in string.ascii_lowercase
|
|
|
|
assert customer.amount == 0
|
2022-11-23 11:23:17 +00:00
|
|
|
|
|
|
|
def test_get_existing_account(self):
|
|
|
|
account, created = Customer.get_or_create(self.user_a)
|
2024-06-26 17:10:24 +00:00
|
|
|
assert created is False
|
|
|
|
assert account.account_id == "1111a"
|
|
|
|
assert account.amount == 10
|
2024-08-01 13:47:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestClubCounterClickAccess(TestCase):
|
|
|
|
@classmethod
|
|
|
|
def setUpTestData(cls):
|
|
|
|
cls.counter = baker.make(Counter, type="OFFICE")
|
|
|
|
cls.customer = subscriber_user.make()
|
|
|
|
cls.counter_url = reverse(
|
|
|
|
"counter:details", kwargs={"counter_id": cls.counter.id}
|
|
|
|
)
|
|
|
|
cls.click_url = reverse(
|
|
|
|
"counter:click",
|
|
|
|
kwargs={"counter_id": cls.counter.id, "user_id": cls.customer.id},
|
|
|
|
)
|
|
|
|
|
|
|
|
cls.user = subscriber_user.make()
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
cache.clear()
|
|
|
|
|
|
|
|
def test_anonymous(self):
|
|
|
|
res = self.client.get(self.click_url)
|
|
|
|
assert res.status_code == 403
|
|
|
|
|
|
|
|
def test_logged_in_without_rights(self):
|
|
|
|
self.client.force_login(self.user)
|
|
|
|
res = self.client.get(self.click_url)
|
|
|
|
assert res.status_code == 403
|
|
|
|
# being a member of the club, without being in the board, isn't enough
|
|
|
|
baker.make(Membership, club=self.counter.club, user=self.user, role=1)
|
|
|
|
res = self.client.get(self.click_url)
|
|
|
|
assert res.status_code == 403
|
|
|
|
|
|
|
|
def test_board_member(self):
|
|
|
|
baker.make(Membership, club=self.counter.club, user=self.user, role=3)
|
|
|
|
self.client.force_login(self.user)
|
|
|
|
res = self.client.get(self.click_url)
|
|
|
|
assert res.status_code == 200
|
|
|
|
|
|
|
|
def test_barman(self):
|
|
|
|
self.counter.sellers.add(self.user)
|
|
|
|
self.client.force_login(self.user)
|
|
|
|
res = self.client.get(self.click_url)
|
|
|
|
assert res.status_code == 200
|