mock.py 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. #
  2. # Copyright (c) Daniel Sheffield 2021
  3. #
  4. # All rights reserved
  5. #
  6. # THIS SOFTWARE IS PROVIDED AS IS WITHOUT WARRANTY
  7. from faker import Faker
  8. from psycopg.sql import SQL
  9. from datetime import datetime
  10. class mock_conn(object):
  11. def close(self):
  12. pass
  13. class mock_cur(object):
  14. def __init__(self, records):
  15. self.records = records
  16. def execute(self, *args, **kwargs):
  17. pass
  18. def fetchall(self):
  19. yield from (i for i in self.records)
  20. def close(self):
  21. pass
  22. def cursor_as_dict(cur):
  23. yield from cur.fetchall()
  24. def get_transactions_statement():
  25. return ''
  26. def get_session_transactions_statement(date, store, full_name=True, exact_time=True):
  27. return ''
  28. Faker.seed(4321)
  29. fake = Faker()
  30. # first, import a similar Provider or use the default one
  31. from faker.providers import BaseProvider
  32. # create new provider class
  33. class Products(BaseProvider):
  34. PRODUCTS = {
  35. 'Dark Chocolate': 'Chocolate',
  36. 'Milk Chocolate': 'Chocolate',
  37. 'Cooking Chocolate': 'Chocolate',
  38. 'Cucumber': 'Veggies',
  39. 'Bananas': 'Fruit',
  40. 'Milk': 'Milk and Cream',
  41. 'Cream': 'Milk and Cream',
  42. 'Coffee Beans': 'Coffee',
  43. 'Freerange Eggs': 'Eggs',
  44. }
  45. GROUPS = [
  46. 'Fish, Meat, Eggs',
  47. 'Dairy',
  48. 'Beverages',
  49. 'Treats',
  50. 'Produce',
  51. ]
  52. CATEGORIES = {
  53. 'Eggs': 'Fish, Meat, Eggs',
  54. 'Milk and Cream': 'Dairy',
  55. 'Chocolate': 'Treats',
  56. 'Veggies': 'Produce',
  57. 'Fruit': 'Produce',
  58. 'Coffee': 'Beverages',
  59. }
  60. STORES = [
  61. 'Paknsave',
  62. 'Countdown',
  63. 'New World',
  64. 'Dreamview',
  65. 'TOFS',
  66. ]
  67. CATEGORY_UNITS = {
  68. 'Eggs': ('g',),
  69. 'Milk and Cream': ('mL', 'L',),
  70. 'Chocolate': ('g', 'kg',),
  71. 'Veggies': ('g', 'kg', 'Piece',),
  72. 'Fruit': ('g', 'kg', 'Piece', 'Bunch',),
  73. 'Coffee': ('g', 'kg',),
  74. }
  75. ORGANIC = [
  76. True,
  77. False,
  78. ]
  79. def _dict_choice(self, _dict):
  80. key = fake.random.choice([ i for i in _dict ])
  81. return key, _dict[key]
  82. def _product_choice(self):
  83. key = None
  84. product = []
  85. for _dict in (
  86. self.PRODUCTS,
  87. self.CATEGORIES,
  88. dict([
  89. (k, None) for k in self.GROUPS
  90. ]),
  91. ):
  92. if key is None:
  93. k, key = self._dict_choice(_dict)
  94. product.append(k)
  95. continue
  96. product.append(key)
  97. key = _dict[key]
  98. return product
  99. def product(self):
  100. return self._product_choice()
  101. def product_unit(self, product):
  102. return fake.random.choice(self.CATEGORY_UNITS[product[1]])
  103. def description(self, *args, **kwargs):
  104. return fake.sentence(*args, **kwargs)
  105. def store(self):
  106. return fake.random.choice(self.STORES)
  107. def unit(self):
  108. return fake.random.choice(self.UNITS)
  109. def organic(self):
  110. return fake.random.choice(self.ORGANIC)
  111. # then add new provider to faker instance
  112. fake.add_provider(Products)
  113. records = [{
  114. 'ts': datetime(2021, 8, 29, 14, 8, 0, 0),
  115. 'id': 2,
  116. 'code': fake.store()[:4],
  117. 'store': 'Countdown',
  118. 'price': 4.30,
  119. '$/unit': 4.3/250.0,
  120. 'quantity': 250.0,
  121. 'unit': 'g',
  122. 'organic': False,
  123. 'total': 0,
  124. 'description': 'Whittakers',
  125. 'product': 'Dark Chocolate',
  126. 'group': 'Treats',
  127. 'category': 'Chocolate',
  128. }]
  129. for i in range(0,100):
  130. product = fake.product()
  131. quantity = fake.random.random()*500 + 1
  132. price = fake.random.random()*10
  133. unit = fake.product_unit(product)
  134. organic = fake.organic()
  135. words = []
  136. words.extend(fake.sentence().split())
  137. words.append(
  138. f'{quantity:.2f} {unit} @ {price:.2f}'
  139. )
  140. if organic:
  141. words.append('organic')
  142. records.append({
  143. 'ts': datetime(2021, 8, 29, 14, 8, 0, 0),
  144. 'id': 3,
  145. 'code': fake.store()[:4],
  146. 'store': fake.store(),
  147. 'price': price,
  148. '$/unit': price/quantity,
  149. 'quantity': quantity,
  150. 'unit': unit,
  151. 'organic': organic,
  152. 'total': 0,
  153. 'description': ' '.join([
  154. product[0],
  155. *fake.description(ext_word_list=words).split()
  156. ]),
  157. 'product': product[0],
  158. 'group': product[2],
  159. 'category': product[1],
  160. })
  161. conn = mock_conn()
  162. cur = mock_cur(records)