mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-10-31 15:50:03 +01:00 
			
		
		
		
	Compare commits
	
		
			3 Commits
		
	
	
		
			export_mem
			...
			7db13fb539
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | 7db13fb539 | ||
|  | dde1baa25c | ||
|  | 7a7ee47e0b | 
							
								
								
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -48,7 +48,6 @@ backups/ | |||||||
| env/ | env/ | ||||||
| venv/ | venv/ | ||||||
| db.sqlite3 | db.sqlite3 | ||||||
| shell.nix |  | ||||||
|  |  | ||||||
| # ansibles customs host | # ansibles customs host | ||||||
| ansible/host_vars/*.yaml | ansible/host_vars/*.yaml | ||||||
|   | |||||||
| @@ -38,7 +38,7 @@ class Command(BaseCommand): | |||||||
|             required=False, |             required=False, | ||||||
|             help="""User will have their(s) wrapped generated, |             help="""User will have their(s) wrapped generated, | ||||||
|             all = all users |             all = all users | ||||||
|             adh = all users who have a valid cd memberships to BDE during the BDE considered |             adh = all users who have a valid memberships to BDE during the BDE considered | ||||||
|             supersuser = all superusers |             supersuser = all superusers | ||||||
|             custom user1,user2,... = a list of username, |             custom user1,user2,... = a list of username, | ||||||
|             custom_id id1,id2,... = a list of user id""", |             custom_id id1,id2,... = a list of user id""", | ||||||
| @@ -70,7 +70,15 @@ class Command(BaseCommand): | |||||||
|             dest='create', |             dest='create', | ||||||
|         ) |         ) | ||||||
|  |  | ||||||
|     def handle(self, *args, **options): # NOQA |     def handle(self, *args, **options): | ||||||
|  |         # useful string for output | ||||||
|  |         red = '\033[31;1m' | ||||||
|  |         yellow = '\033[33;1m' | ||||||
|  |         green = '\033[32;1m' | ||||||
|  |         abort = red + 'ABORT' | ||||||
|  |         warning = yellow + 'WARNING' | ||||||
|  |         success = green + 'SUCCESS' | ||||||
|  |  | ||||||
|         # Traitement des paramètres |         # Traitement des paramètres | ||||||
|         verb = options['verbosity'] |         verb = options['verbosity'] | ||||||
|         bde = [] |         bde = [] | ||||||
| @@ -81,11 +89,11 @@ class Command(BaseCommand): | |||||||
|         if options['bde_id']: |         if options['bde_id']: | ||||||
|             if bde: |             if bde: | ||||||
|                 if verb >= 1: |                 if verb >= 1: | ||||||
|                     self.stdout.write(self.style.WARNING( |                     print(warning) | ||||||
|                         "WARNING\nYou already defined bde with their name !")) |                     print(yellow + 'You already defined bde with their name !') | ||||||
|                 if verb >= 0: |                 if verb >= 0: | ||||||
|                     self.stdout.write(self.style.ERROR("ABORT")) |                     print(abort) | ||||||
|                 exit(1) |                 return | ||||||
|             bde_id = options['bde_id'].split(',') |             bde_id = options['bde_id'].split(',') | ||||||
|             bde = [Bde.objects.get(pk=i) for i in bde_id] |             bde = [Bde.objects.get(pk=i) for i in bde_id] | ||||||
|  |  | ||||||
| @@ -105,11 +113,11 @@ class Command(BaseCommand): | |||||||
|                 user = ['custom_id', [User.objects.get(pk=u) for u in user_id]] |                 user = ['custom_id', [User.objects.get(pk=u) for u in user_id]] | ||||||
|             else: |             else: | ||||||
|                 if verb >= 1: |                 if verb >= 1: | ||||||
|                     self.sdtout.write(self.style.WARNING( |                     print(warning) | ||||||
|                         "WARNING\nYou user option is not recognized")) |                     print(yellow + 'You user option is not recognized') | ||||||
|                 if verb >= 0: |                 if verb >= 0: | ||||||
|                     self.stdout.write(self.style.ERROR("ABORT")) |                     print(abort) | ||||||
|                 exit(1) |                 return | ||||||
|  |  | ||||||
|         club = [] |         club = [] | ||||||
|         if options['club']: |         if options['club']: | ||||||
| @@ -125,11 +133,11 @@ class Command(BaseCommand): | |||||||
|                 club = ['custom_id', [Club.objects.get(pk=c) for c in club_id]] |                 club = ['custom_id', [Club.objects.get(pk=c) for c in club_id]] | ||||||
|             else: |             else: | ||||||
|                 if verb >= 1: |                 if verb >= 1: | ||||||
|                     self.stdout.write(self.style.WARNING( |                     print(warning) | ||||||
|                         "WARNING\nYou club option is not recognized")) |                     print(yellow + 'You club option is not recognized') | ||||||
|                 if verb >= 0: |                 if verb >= 0: | ||||||
|                     self.stdout.write(self.style.ERROR("ABORT")) |                     print(abort) | ||||||
|                 exit(1) |                 return | ||||||
|  |  | ||||||
|         change = options['change'] |         change = options['change'] | ||||||
|         create = options['create'] |         create = options['create'] | ||||||
| @@ -137,75 +145,72 @@ class Command(BaseCommand): | |||||||
|         # check if parameters are sufficient for generate wrapped with the desired option |         # check if parameters are sufficient for generate wrapped with the desired option | ||||||
|         if not bde: |         if not bde: | ||||||
|             if verb >= 1: |             if verb >= 1: | ||||||
|                 self.stdout.write(self.style.WARNING( |                 print(warning) | ||||||
|                     "WARNING\nYou have not selectionned a BDE !")) |                 print(yellow + 'You have not selectionned a BDE !') | ||||||
|             if verb >= 0: |             if verb >= 0: | ||||||
|                 self.stdout.write(self.style.ERROR("ABORT")) |                 print(abort) | ||||||
|             exit(1) |             return | ||||||
|         if not (user or club): |         if not (user or club): | ||||||
|             if verb >= 1: |             if verb >= 1: | ||||||
|                 self.stdout.write(self.style.WARNING( |                 print(warning) | ||||||
|                     "WARNING\nNo club or user selected !")) |                 print(yellow + 'No club or user selected !') | ||||||
|             if verb >= 0: |             if verb >= 0: | ||||||
|                 self.stdout.write(self.style.ERROR("ABORT")) |                 print(abort) | ||||||
|             exit(1) |             return | ||||||
|  |  | ||||||
|         if verb >= 3: |         if verb >= 3: | ||||||
|             self.stdout.write("Options:") |             print('\033[1mOptions:\033[m') | ||||||
|             bde_str = '' |             bde_str = '' | ||||||
|             for b in bde: |             for b in bde: | ||||||
|                 bde_str += str(b) + '\n' |                 bde_str += str(b) | ||||||
|             self.stdout.write("BDE: " + bde_str) |             print('BDE: ' + bde_str) | ||||||
|             if user: |             if user: | ||||||
|                 self.stdout.write('User: ' + user[0]) |                 print('User: ' + user[0]) | ||||||
|             if club: |             if club: | ||||||
|                 self.stdout.write('Club: ' + club[0]) |                 print('Club: ' + club[0]) | ||||||
|             self.stdout.write('change: ' + str(change)) |             print('change: ' + str(change)) | ||||||
|             self.stdout.write('create: ' + str(create) + '\n') |             print('create: ' + str(create)) | ||||||
|  |             print('') | ||||||
|         if not (change or create): |         if not (change or create): | ||||||
|             if verb >= 1: |             if verb >= 1: | ||||||
|                 self.stdout.write(self.style.WARNING( |                 print(warning) | ||||||
|                     "WARNING\nchange and create is set to false, none wrapped will be created")) |                 print(yellow + 'change and create is set to false, none wrapped will be created') | ||||||
|             if verb >= 0: |             if verb >= 0: | ||||||
|                 self.stdout.write(self.style.ERROR("ABORT")) |                 print(abort) | ||||||
|             exit(1) |             return | ||||||
|         if verb >= 1 and change: |         if verb >= 1 and change: | ||||||
|             self.stdout.write(self.style.WARNING( |             print(warning) | ||||||
|                 "WARNING\nchange is set to true, some wrapped may be replaced !")) |             print(yellow + 'change is set to true, some wrapped may be replaced !') | ||||||
|         if verb >= 1 and not create: |         if verb >= 1 and not create: | ||||||
|             self.stdout.write(self.style.WARNING( |             print(warning) | ||||||
|                 "WARNING\ncreate is set to false, wrapped will not be created !")) |             print(yellow + 'create is set to false, wrapped will not be created !') | ||||||
|         if verb >= 3 or change or not create: |         if verb >= 3 or change or not create: | ||||||
|             a = str(input('\033[mContinue ? (y/n) ')).lower() |             a = str(input('\033[mContinue ? (y/n) ')).lower() | ||||||
|             if a in ['n', 'no', 'non', '0']: |             if a in ['n', 'no', 'non', '0']: | ||||||
|                 if verb >= 0: |                 if verb >= 0: | ||||||
|                     self.stdout.write(self.style.ERROR("ABORT")) |                     print(abort) | ||||||
|                 exit(1) |                 return | ||||||
|  |  | ||||||
|         note = self.convert_to_note(change, create, bde=bde, user=user, club=club, verb=verb) |         note = self.convert_to_note(change, create, bde=bde, user=user, club=club, verb=verb) | ||||||
|         if verb >= 1: |         if verb >= 1: | ||||||
|             self.stdout.write(self.style.SUCCESS( |             print("\033[32mUser and/or Club given has successfully convert in their note\033[m") | ||||||
|                 "User and/or Club given has successfully convert in their note")) |  | ||||||
|  |  | ||||||
|         global_data = self.global_data(bde, verb=verb) |         global_data = self.global_data(bde, verb=verb) | ||||||
|         if verb >= 1: |         if verb >= 1: | ||||||
|             self.stdout.write(self.style.SUCCESS( |             print("\033[32mGlobal data has been successfully generated\033[m") | ||||||
|                 "Global data has been successfully generated")) |  | ||||||
|  |  | ||||||
|         unique_data = self.unique_data(bde, note, global_data=global_data, verb=verb) |         unique_data = self.unique_data(bde, note, global_data=global_data, verb=verb) | ||||||
|         if verb >= 1: |         if verb >= 1: | ||||||
|             self.stdout.write(self.style.SUCCESS( |             print("\033[32mUnique data has been successfully generated\033[m") | ||||||
|                 "Unique data has been successfully generated")) |  | ||||||
|  |  | ||||||
|         self.make_wrapped(unique_data, note, bde, change, create, verb=verb) |         self.make_wrapped(unique_data, note, bde, change, create, verb=verb) | ||||||
|         if verb >= 1: |         if verb >= 1: | ||||||
|             self.stdout.write(self.style.SUCCESS( |             print(green + "The wrapped has been generated !") | ||||||
|                 "The wrapped has been generated !")) |  | ||||||
|         if verb >= 0: |         if verb >= 0: | ||||||
|             self.stdout.write(self.style.SUCCESS("SUCCESS")) |             print(success) | ||||||
|         exit(0) |  | ||||||
|  |  | ||||||
|     def convert_to_note(self, change, create, bde=None, user=None, club=None, verb=1): # NOQA |         return | ||||||
|  |  | ||||||
|  |     def convert_to_note(self, change, create, bde=None, user=None, club=None, verb=1): | ||||||
|         notes = [] |         notes = [] | ||||||
|         for b in bde: |         for b in bde: | ||||||
|             note_for_bde = Note.objects.filter(pk__lte=-1) |             note_for_bde = Note.objects.filter(pk__lte=-1) | ||||||
| @@ -248,17 +253,17 @@ class Command(BaseCommand): | |||||||
|             note_for_bde = self.filter_note(b, note_for_bde, change, create, verb=verb) |             note_for_bde = self.filter_note(b, note_for_bde, change, create, verb=verb) | ||||||
|             notes.append(note_for_bde) |             notes.append(note_for_bde) | ||||||
|             if verb >= 2: |             if verb >= 2: | ||||||
|                 self.stdout.write(f"{len(note_for_bde)} note selectionned for bde {b.name}") |                 print("\033[m{nb} note selectionned for bde {bde}".format(nb=len(note_for_bde), bde=b.name)) | ||||||
|         return notes |         return notes | ||||||
|  |  | ||||||
|     def global_data(self, bde, verb=1): # NOQA |     def global_data(self, bde, verb=1): | ||||||
|         data = {} |         data = {} | ||||||
|         for b in bde: |         for b in bde: | ||||||
|             if b.name == 'Rave Part[list]': |             if b.name == 'Rave Part[list]': | ||||||
|                 if verb >= 2: |                 if verb >= 2: | ||||||
|                     self.stdout.write("Begin to make global data") |                     print("Begin to make global data") | ||||||
|                 if verb >= 3: |                 if verb >= 3: | ||||||
|                     self.stdout.write("nb_transaction") |                     print('nb_transaction') | ||||||
|                 # nb total de transactions |                 # nb total de transactions | ||||||
|                 data['nb_transaction'] = Transaction.objects.filter( |                 data['nb_transaction'] = Transaction.objects.filter( | ||||||
|                     created_at__gte=b.date_start, |                     created_at__gte=b.date_start, | ||||||
| @@ -266,7 +271,7 @@ class Command(BaseCommand): | |||||||
|                     valid=True).count() |                     valid=True).count() | ||||||
|  |  | ||||||
|                 if verb >= 3: |                 if verb >= 3: | ||||||
|                     self.stdout.write("nb_vieux_con") |                     print('nb_vieux_con') | ||||||
|                 # nb total de vielleux con·ne·s derrière le bar |                 # nb total de vielleux con·ne·s derrière le bar | ||||||
|                 button_id = [2884, 2585] |                 button_id = [2884, 2585] | ||||||
|                 transactions = Transaction.objects.filter( |                 transactions = Transaction.objects.filter( | ||||||
| @@ -281,7 +286,7 @@ class Command(BaseCommand): | |||||||
|                 data['nb_vieux_con'] = q |                 data['nb_vieux_con'] = q | ||||||
|  |  | ||||||
|                 if verb >= 3: |                 if verb >= 3: | ||||||
|                     self.stdout.write("nb_soiree") |                     print('nb_soiree') | ||||||
|                 # nb total de soirée |                 # nb total de soirée | ||||||
|                 a_type_id = [1, 2, 4, 5, 7, 10] |                 a_type_id = [1, 2, 4, 5, 7, 10] | ||||||
|                 data['nb_soiree'] = Activity.objects.filter( |                 data['nb_soiree'] = Activity.objects.filter( | ||||||
| @@ -291,7 +296,7 @@ class Command(BaseCommand): | |||||||
|                     activity_type__pk__in=a_type_id).count() |                     activity_type__pk__in=a_type_id).count() | ||||||
|  |  | ||||||
|                 if verb >= 3: |                 if verb >= 3: | ||||||
|                     self.stdout.write('pots, nb_entree_pot') |                     print('pots, nb_entree_pot') | ||||||
|                 # nb d'entrée totale aux pots |                 # nb d'entrée totale aux pots | ||||||
|                 pot_id = [1, 4, 10] |                 pot_id = [1, 4, 10] | ||||||
|                 pots = Activity.objects.filter( |                 pots = Activity.objects.filter( | ||||||
| @@ -305,7 +310,7 @@ class Command(BaseCommand): | |||||||
|                     data['nb_entree_pot'] += Entry.objects.filter(activity=pot).count() |                     data['nb_entree_pot'] += Entry.objects.filter(activity=pot).count() | ||||||
|  |  | ||||||
|                 if verb >= 3: |                 if verb >= 3: | ||||||
|                     self.stdout.write('top3_buttons') |                     print('top3_buttons') | ||||||
|                 # top 3 des boutons les plus cliqués |                 # top 3 des boutons les plus cliqués | ||||||
|                 transactions = Transaction.objects.filter( |                 transactions = Transaction.objects.filter( | ||||||
|                     created_at__gte=b.date_start, |                     created_at__gte=b.date_start, | ||||||
| @@ -324,7 +329,7 @@ class Command(BaseCommand): | |||||||
|                 data['top3_buttons'] = list(sorted(d.items(), key=lambda item: item[1], reverse=True))[:3] |                 data['top3_buttons'] = list(sorted(d.items(), key=lambda item: item[1], reverse=True))[:3] | ||||||
|  |  | ||||||
|                 if verb >= 3: |                 if verb >= 3: | ||||||
|                     self.stdout.write('class_conso_all') |                     print('class_conso_all') | ||||||
|                 # le classement des plus gros consommateurs (BDE + club) |                 # le classement des plus gros consommateurs (BDE + club) | ||||||
|                 transactions = Transaction.objects.filter( |                 transactions = Transaction.objects.filter( | ||||||
|                     created_at__gte=b.date_start, |                     created_at__gte=b.date_start, | ||||||
| @@ -343,7 +348,7 @@ class Command(BaseCommand): | |||||||
|                 data['class_conso_all'] = dict(sorted(d.items(), key=lambda item: item[1], reverse=True)) |                 data['class_conso_all'] = dict(sorted(d.items(), key=lambda item: item[1], reverse=True)) | ||||||
|  |  | ||||||
|                 if verb >= 3: |                 if verb >= 3: | ||||||
|                     self.stdout.write('class_conso_bde') |                     print('class_conso_bde') | ||||||
|                 # le classement des plus gros consommateurs BDE |                 # le classement des plus gros consommateurs BDE | ||||||
|                 transactions = Transaction.objects.filter( |                 transactions = Transaction.objects.filter( | ||||||
|                     created_at__gte=b.date_start, |                     created_at__gte=b.date_start, | ||||||
| @@ -363,10 +368,11 @@ class Command(BaseCommand): | |||||||
|  |  | ||||||
|             else: |             else: | ||||||
|                 # make your wrapped or reuse previous wrapped |                 # make your wrapped or reuse previous wrapped | ||||||
|                 raise NotImplementedError(f"The BDE: {b.name} has not personalized wrapped, make it !") |                 raise NotImplementedError("The BDE: {bde_name} has not personalized wrapped, make it !" | ||||||
|  |                                           .format(bde_name=b.name)) | ||||||
|         return data |         return data | ||||||
|  |  | ||||||
|     def unique_data(self, bde, note, global_data=None, verb=1): # NOQA |     def unique_data(self, bde, note, global_data=None, verb=1): | ||||||
|         data = [] |         data = [] | ||||||
|         for i in range(len(bde)): |         for i in range(len(bde)): | ||||||
|             data_bde = [] |             data_bde = [] | ||||||
| @@ -374,7 +380,8 @@ class Command(BaseCommand): | |||||||
|                 if verb >= 3: |                 if verb >= 3: | ||||||
|                     total = len(note[i]) |                     total = len(note[i]) | ||||||
|                     current = 0 |                     current = 0 | ||||||
|                     self.stdout.write(f"Make {total} data for wrapped sponsored by {bde[i].name}") |                     print('Make {nb} data for wrapped sponsored by {bde}' | ||||||
|  |                           .format(nb=total, bde=bde[i].name)) | ||||||
|                 for n in note[i]: |                 for n in note[i]: | ||||||
|                     d = {} |                     d = {} | ||||||
|                     if 'user' in n.__dir__(): |                     if 'user' in n.__dir__(): | ||||||
| @@ -535,11 +542,12 @@ class Command(BaseCommand): | |||||||
|                     data_bde.append(json.dumps(d)) |                     data_bde.append(json.dumps(d)) | ||||||
|                     if verb >= 3: |                     if verb >= 3: | ||||||
|                         current += 1 |                         current += 1 | ||||||
|                         self.stdout.write("\033[2K" + f"({current}/{total})" + "\033[1A") |                         print('\033[2K' + '({c}/{t})'.format(c=current, t=total) + '\033[1A') | ||||||
|  |  | ||||||
|             else: |             else: | ||||||
|                 # make your wrapped or reuse previous wrapped |                 # make your wrapped or reuse previous wrapped | ||||||
|                 raise NotImplementedError(f"The BDE: {bde[i].name} has not personalized wrapped, make it !") |                 raise NotImplementedError("The BDE: {bde_name} has not personalized wrapped, make it !" | ||||||
|  |                                           .format(bde_name=bde[i].name)) | ||||||
|             data.append(data_bde) |             data.append(data_bde) | ||||||
|         return data |         return data | ||||||
|  |  | ||||||
| @@ -549,7 +557,7 @@ class Command(BaseCommand): | |||||||
|             total = 0 |             total = 0 | ||||||
|             for n in note: |             for n in note: | ||||||
|                 total += len(n) |                 total += len(n) | ||||||
|             self.stdout.write(f"Make {total} wrapped") |             print('\033[mMake {nb} wrapped'.format(nb=total)) | ||||||
|         for i in range(len(bde)): |         for i in range(len(bde)): | ||||||
|             for j in range(len(note[i])): |             for j in range(len(note[i])): | ||||||
|                 if create and not Wrapped.objects.filter(bde=bde[i], note=note[i][j]): |                 if create and not Wrapped.objects.filter(bde=bde[i], note=note[i][j]): | ||||||
| @@ -564,7 +572,7 @@ class Command(BaseCommand): | |||||||
|                     w.save() |                     w.save() | ||||||
|                 if verb >= 3: |                 if verb >= 3: | ||||||
|                     current += 1 |                     current += 1 | ||||||
|                     self.stdout.write("\033[2K" + f"({current}/{total})" + "\033[1A") |                     print('\033[2K' + '({c}/{t})'.format(c=current, t=total) + '\033[1A') | ||||||
|         return |         return | ||||||
|  |  | ||||||
|     def filter_note(self, bde, note, change, create, verb=1): |     def filter_note(self, bde, note, change, create, verb=1): | ||||||
|   | |||||||
| @@ -1,91 +0,0 @@ | |||||||
| # Copyright (C) 2018-2025 by BDE ENS Paris-Saclay |  | ||||||
| # SPDX-License-Identifier: GPL-3.0-or-later |  | ||||||
|  |  | ||||||
| from datetime import timedelta |  | ||||||
|  |  | ||||||
| from api.tests import TestAPI |  | ||||||
| from django.contrib.auth.models import User |  | ||||||
| from django.test import TestCase |  | ||||||
| from django.urls import reverse |  | ||||||
| from django.utils import timezone |  | ||||||
|  |  | ||||||
| from ..api.views import WrappedViewSet, BdeViewSet |  | ||||||
| from ..models import Bde, Wrapped |  | ||||||
|  |  | ||||||
|  |  | ||||||
| class TestWrapped(TestCase): |  | ||||||
|     """ |  | ||||||
|     Test activities |  | ||||||
|     """ |  | ||||||
|     fixtures = ('initial',) |  | ||||||
|  |  | ||||||
|     def setUp(self): |  | ||||||
|         self.user = User.objects.create_superuser( |  | ||||||
|             username="admintoto", |  | ||||||
|             password="tototototo", |  | ||||||
|             email="toto@example.com" |  | ||||||
|         ) |  | ||||||
|         self.client.force_login(self.user) |  | ||||||
|  |  | ||||||
|         sess = self.client.session |  | ||||||
|         sess["permission_mask"] = 42 |  | ||||||
|         sess.save() |  | ||||||
|  |  | ||||||
|         self.bde = Bde.objects.create( |  | ||||||
|             name="The best BDE", |  | ||||||
|             date_start=timezone.now() - timedelta(days=365), |  | ||||||
|             date_end=timezone.now(), |  | ||||||
|         ) |  | ||||||
|  |  | ||||||
|         self.wrapped = Wrapped.objects.create( |  | ||||||
|             generated=True, |  | ||||||
|             public=False, |  | ||||||
|             bde=self.bde, |  | ||||||
|             note=self.user.note, |  | ||||||
|             data_json="{}", |  | ||||||
|         ) |  | ||||||
|  |  | ||||||
|     def test_wrapped_list(self): |  | ||||||
|         """ |  | ||||||
|         Display the list of all wrapped |  | ||||||
|         """ |  | ||||||
|         response = self.client.get(reverse("wrapped:wrapped_list")) |  | ||||||
|         self.assertEqual(response.status_code, 200) |  | ||||||
|  |  | ||||||
|     def test_wrapped_detail(self): |  | ||||||
|         """ |  | ||||||
|         Display the detail of an wrapped |  | ||||||
|         """ |  | ||||||
|         response = self.client.get(reverse("wrapped:wrapped_detail", args=(self.wrapped.pk,))) |  | ||||||
|         self.assertEqual(response.status_code, 200) |  | ||||||
|  |  | ||||||
|  |  | ||||||
| class TestWrappedAPI(TestAPI): |  | ||||||
|     def setUp(self) -> None: |  | ||||||
|         super().setUp() |  | ||||||
|  |  | ||||||
|         self.bde = Bde.objects.create( |  | ||||||
|             name="The best BDE", |  | ||||||
|             date_start=timezone.now() - timedelta(days=365), |  | ||||||
|             date_end=timezone.now(), |  | ||||||
|         ) |  | ||||||
|  |  | ||||||
|         self.wrapped = Wrapped.objects.create( |  | ||||||
|             generated=True, |  | ||||||
|             public=False, |  | ||||||
|             bde=self.bde, |  | ||||||
|             note=self.user.note, |  | ||||||
|             data_json="{}", |  | ||||||
|         ) |  | ||||||
|  |  | ||||||
|     def test_bde_api(self): |  | ||||||
|         """ |  | ||||||
|         Load Bde API page and test all filters and permissions |  | ||||||
|         """ |  | ||||||
|         self.check_viewset(BdeViewSet, "/api/wrapped/bde/") |  | ||||||
|  |  | ||||||
|     def test_wrapped_api(self): |  | ||||||
|         """ |  | ||||||
|         Load Wrapped API page and test all filters and permissions |  | ||||||
|         """ |  | ||||||
|         self.check_viewset(WrappedViewSet, "/api/wrapped/wrapped/") |  | ||||||
							
								
								
									
										34
									
								
								shell-static.nix
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										34
									
								
								shell-static.nix
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,34 @@ | |||||||
|  | # This is a workaround meant for use with the nix package manager. If you don't know what it is or don't use it, please ignore this file. | ||||||
|  | #  | ||||||
|  | # The nk20 javascript static location are hardcoded for imperative system. | ||||||
|  | # This make ./manage.py collectstatic hard to use with nixos. | ||||||
|  | #  | ||||||
|  | # A workaround is to enter a FHSUserEnv with the static placed under /share/javascript/<static>. | ||||||
|  | # This emulate a debian like system and enable collecting static normally with ./manage.py collectstatics. | ||||||
|  | # The regular shell.nix should be enough for other configurations. | ||||||
|  | # | ||||||
|  | # Warning, you are still supposed to use pip package with a venv ! | ||||||
|  | { pkgs ? import <nixpkgs> {} }: | ||||||
|  | (pkgs.buildFHSUserEnv { | ||||||
|  |   name = "pipzone"; | ||||||
|  |   targetPkgs = pkgs: (with pkgs; | ||||||
|  |   let | ||||||
|  |     fhs-static = stdenv.mkDerivation { | ||||||
|  |       name = "fhs-static"; | ||||||
|  |       buildCommand = '' | ||||||
|  |       mkdir -p $out/share/javascript/bootstrap4 | ||||||
|  |       mkdir -p $out/share/javascript/jquery | ||||||
|  |       ln -s ${python39Packages.xstatic-bootstrap}/lib/python3.9/site-packages/xstatic/pkg/bootstrap/data/* $out/share/javascript/bootstrap4 | ||||||
|  |       ln -s ${python39Packages.xstatic-jquery}/lib/python3.9/site-packages/xstatic/pkg/jquery/data/* $out/share/javascript/jquery | ||||||
|  |     ''; | ||||||
|  |     }; | ||||||
|  |   in [ | ||||||
|  |     fhs-static | ||||||
|  |     python39 | ||||||
|  |     gettext | ||||||
|  |     python39Packages.pip | ||||||
|  |     python39Packages.virtualenv | ||||||
|  |     python39Packages.setuptools | ||||||
|  |   ]); | ||||||
|  |   runScript = "bash"; | ||||||
|  | }).env | ||||||
							
								
								
									
										23
									
								
								shell.nix
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										23
									
								
								shell.nix
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,23 @@ | |||||||
|  | # This is meant for use with the nix package manager. If you don't know what it is or don't use it, please ignore this file. | ||||||
|  | # | ||||||
|  | # This shell.nix contains all dependencies require to create a venv and pip install -r requirements.txt. | ||||||
|  | # | ||||||
|  | # Please check shell-static.nix for running ./manage.py collectstatics. | ||||||
|  | { pkgs ? import <nixpkgs> {} }: | ||||||
|  | pkgs.mkShell { | ||||||
|  |   buildInputs = with pkgs; [ | ||||||
|  |     python39 | ||||||
|  |     python39Packages.pip | ||||||
|  |     python39Packages.setuptools | ||||||
|  |     gettext | ||||||
|  |  | ||||||
|  |   ]; | ||||||
|  |   shellHook = '' | ||||||
|  |     # Tells pip to put packages into $PIP_PREFIX instead of the usual locations. | ||||||
|  |     # See https://pip.pypa.io/en/stable/user_guide/#environment-variables. | ||||||
|  |     export PIP_PREFIX=$(pwd)/_build/pip_packages | ||||||
|  |     export PYTHONPATH="$PIP_PREFIX/${pkgs.python39.sitePackages}:$PYTHONPATH" | ||||||
|  |     export PATH="$PIP_PREFIX/bin:$PATH" | ||||||
|  |     unset SOURCE_DATE_EPOCH | ||||||
|  |   ''; | ||||||
|  | } | ||||||
		Reference in New Issue
	
	Block a user