123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- import os
- from operator import itemgetter
- from random import randint
- import asyncpg
- from crax import Crax
- from crax.response_types import BaseResponse, JSONResponse
- from crax.urls import Route, Url
- from crax.views import JSONView, TemplateView
- READ_ROW_SQL = 'SELECT "id", "randomnumber" FROM "world" WHERE id = $1'
- WRITE_ROW_SQL = 'UPDATE "world" SET "randomnumber"=$1 WHERE id=$2'
- async def setup_database():
- global connection_pool
- connection_pool = await asyncpg.create_pool(
- user=os.getenv('PGUSER', 'benchmarkdbuser'),
- password=os.getenv('PGPASS', 'benchmarkdbpass'),
- database='hello_world',
- host='tfb-database',
- port=5432
- )
- def get_num_queries(request):
- try:
- query_count = int(request.query["queries"][0])
- except (KeyError, IndexError, ValueError):
- return 1
- if query_count < 1:
- return 1
- if query_count > 500:
- return 500
- return query_count
- class TestSingleQuery(JSONView):
- async def get(self):
- row_id = randint(1, 10000)
- async with connection_pool.acquire() as connection:
- if self.request.path == '/db':
- res = await connection.fetchval(READ_ROW_SQL, row_id)
- self.context = {'id': row_id, 'randomNumber': res}
- class TestMultiQueries(JSONView):
- async def get(self):
- row_ids = [randint(1, 10000) for _ in range(get_num_queries(self.request))]
- worlds = []
- async with connection_pool.acquire() as connection:
- statement = await connection.prepare(READ_ROW_SQL)
- for row_id in row_ids:
- number = await statement.fetchval(row_id)
- worlds.append({'id': row_id, 'randomNumber': number})
- self.context = worlds
- class TestUpdates(JSONView):
- async def get(self):
- updates = [(randint(1, 10000), randint(1, 10000)) for _ in range(get_num_queries(self.request))]
- worlds = [{'id': row_id, 'randomNumber': number} for row_id, number in updates]
- async with connection_pool.acquire() as connection:
- statement = await connection.prepare(READ_ROW_SQL)
- for row_id, number in updates:
- await statement.fetchval(row_id)
- await connection.executemany(WRITE_ROW_SQL, updates)
- self.context = worlds
- class TestSingleFortunes(TemplateView):
- template = "fortune.html"
- async def get(self):
- async with connection_pool.acquire() as connection:
- fortunes = await connection.fetch('SELECT * FROM Fortune')
- fortunes.append([0, 'Additional fortune added at request time.'])
- fortunes.sort(key=itemgetter(1))
- self.context["fortunes"] = fortunes
- APPLICATIONS = ["hello"]
- URL_PATTERNS = [
- Route(Url('/json'), JSONResponse(None, {'message': 'Hello, world!'})),
- Route(Url('/plaintext'), BaseResponse(None, b'Hello, world!')),
- Route(Url('/db'), TestSingleQuery),
- Route(Url('/queries'), TestMultiQueries),
- Route(Url('/updates'), TestUpdates),
- Route(Url('/fortunes'), TestSingleFortunes)
- ]
- app = Crax('hello.app', debug=True, on_startup=setup_database)
|