kopia lustrzana https://github.com/simonw/datasette
Update number of expected tables
commit
dd4491dd81
|
@ -17,6 +17,7 @@ import jinja2
|
||||||
import hashlib
|
import hashlib
|
||||||
import time
|
import time
|
||||||
import pint
|
import pint
|
||||||
|
import traceback
|
||||||
from .utils import (
|
from .utils import (
|
||||||
Filters,
|
Filters,
|
||||||
CustomJSONEncoder,
|
CustomJSONEncoder,
|
||||||
|
@ -171,9 +172,9 @@ class BaseView(RenderMixin):
|
||||||
else:
|
else:
|
||||||
rows = cursor.fetchall()
|
rows = cursor.fetchall()
|
||||||
truncated = False
|
truncated = False
|
||||||
except Exception:
|
except Exception as e:
|
||||||
print('ERROR: conn={}, sql = {}, params = {}'.format(
|
print('ERROR: conn={}, sql = {}, params = {}: {}'.format(
|
||||||
conn, repr(sql), params
|
conn, repr(sql), params, e
|
||||||
))
|
))
|
||||||
raise
|
raise
|
||||||
if truncate:
|
if truncate:
|
||||||
|
@ -480,13 +481,15 @@ class RowTableShared(BaseView):
|
||||||
pks = table_info.get('primary_keys') or []
|
pks = table_info.get('primary_keys') or []
|
||||||
|
|
||||||
# Prefetch foreign key resolutions for later expansion:
|
# Prefetch foreign key resolutions for later expansion:
|
||||||
expanded = {}
|
fks = {}
|
||||||
|
labeled_fks = {}
|
||||||
if table_info and expand_foreign_keys:
|
if table_info and expand_foreign_keys:
|
||||||
foreign_keys = table_info['foreign_keys']['outgoing']
|
foreign_keys = table_info['foreign_keys']['outgoing']
|
||||||
for fk in foreign_keys:
|
for fk in foreign_keys:
|
||||||
label_column = tables.get(fk['other_table'], {}).get('label_column')
|
label_column = tables.get(fk['other_table'], {}).get('label_column')
|
||||||
if not label_column:
|
if not label_column:
|
||||||
# We only link cells to other tables with label columns defined
|
# No label for this FK
|
||||||
|
fks[fk['column']] = fk['other_table']
|
||||||
continue
|
continue
|
||||||
ids_to_lookup = set([row[fk['column']] for row in rows])
|
ids_to_lookup = set([row[fk['column']] for row in rows])
|
||||||
sql = 'select "{other_column}", "{label_column}" from {other_table} where "{other_column}" in ({placeholders})'.format(
|
sql = 'select "{other_column}", "{label_column}" from {other_table} where "{other_column}" in ({placeholders})'.format(
|
||||||
|
@ -502,7 +505,7 @@ class RowTableShared(BaseView):
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
for id, value in results:
|
for id, value in results:
|
||||||
expanded[(fk['column'], id)] = (fk['other_table'], value)
|
labeled_fks[(fk['column'], id)] = (fk['other_table'], value)
|
||||||
|
|
||||||
cell_rows = []
|
cell_rows = []
|
||||||
for row in rows:
|
for row in rows:
|
||||||
|
@ -522,16 +525,24 @@ class RowTableShared(BaseView):
|
||||||
})
|
})
|
||||||
for value, column_dict in zip(row, columns):
|
for value, column_dict in zip(row, columns):
|
||||||
column = column_dict['name']
|
column = column_dict['name']
|
||||||
if (column, value) in expanded:
|
if (column, value) in labeled_fks:
|
||||||
other_table, label = expanded[(column, value)]
|
other_table, label = labeled_fks[(column, value)]
|
||||||
display_value = jinja2.Markup(
|
display_value = jinja2.Markup(
|
||||||
'<a href="/{database}/{table}/{id}">{label}</a> <em>{id}</em>'.format(
|
'<a href="/{database}/{table}/{link_id}">{label}</a> <em>{id}</em>'.format(
|
||||||
database=database,
|
database=database,
|
||||||
table=urllib.parse.quote_plus(other_table),
|
table=urllib.parse.quote_plus(other_table),
|
||||||
|
link_id=urllib.parse.quote_plus(str(value)),
|
||||||
id=str(jinja2.escape(value)),
|
id=str(jinja2.escape(value)),
|
||||||
label=str(jinja2.escape(label)),
|
label=str(jinja2.escape(label)),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
elif column in fks:
|
||||||
|
display_value = jinja2.Markup(
|
||||||
|
'<a href="/{database}/{table}/{link_id}">{id}</a>'.format(
|
||||||
|
database=database,
|
||||||
|
table=urllib.parse.quote_plus(fks[column]),
|
||||||
|
link_id=urllib.parse.quote_plus(str(value)),
|
||||||
|
id=str(jinja2.escape(value))))
|
||||||
elif value is None:
|
elif value is None:
|
||||||
display_value = jinja2.Markup(' ')
|
display_value = jinja2.Markup(' ')
|
||||||
elif is_url(str(value).strip()):
|
elif is_url(str(value).strip()):
|
||||||
|
@ -978,9 +989,12 @@ class RowView(RowTableShared):
|
||||||
if len(pk_values) != 1:
|
if len(pk_values) != 1:
|
||||||
return []
|
return []
|
||||||
table_info = self.ds.inspect()[name]['tables'].get(table)
|
table_info = self.ds.inspect()[name]['tables'].get(table)
|
||||||
if not table:
|
if not table_info:
|
||||||
return []
|
return []
|
||||||
foreign_keys = table_info['foreign_keys']['incoming']
|
foreign_keys = table_info['foreign_keys']['incoming']
|
||||||
|
if len(foreign_keys) == 0:
|
||||||
|
return []
|
||||||
|
|
||||||
sql = 'select ' + ', '.join([
|
sql = 'select ' + ', '.join([
|
||||||
'(select count(*) from {table} where "{column}"=:id)'.format(
|
'(select count(*) from {table} where "{column}"=:id)'.format(
|
||||||
table=escape_sqlite(fk['other_table']),
|
table=escape_sqlite(fk['other_table']),
|
||||||
|
@ -1253,6 +1267,7 @@ class Datasette:
|
||||||
status = 500
|
status = 500
|
||||||
info = {}
|
info = {}
|
||||||
message = str(exception)
|
message = str(exception)
|
||||||
|
traceback.print_exc()
|
||||||
templates = ['500.html']
|
templates = ['500.html']
|
||||||
if status != 500:
|
if status != 500:
|
||||||
templates = ['{}.html'.format(status)] + templates
|
templates = ['{}.html'.format(status)] + templates
|
||||||
|
|
|
@ -93,10 +93,16 @@ METADATA = {
|
||||||
|
|
||||||
TABLES = '''
|
TABLES = '''
|
||||||
CREATE TABLE simple_primary_key (
|
CREATE TABLE simple_primary_key (
|
||||||
pk varchar(30) primary key,
|
id varchar(30) primary key,
|
||||||
content text
|
content text
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE TABLE primary_key_multiple_columns (
|
||||||
|
id varchar(30) primary key,
|
||||||
|
content text,
|
||||||
|
content2 text
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE compound_primary_key (
|
CREATE TABLE compound_primary_key (
|
||||||
pk1 varchar(30),
|
pk1 varchar(30),
|
||||||
pk2 varchar(30),
|
pk2 varchar(30),
|
||||||
|
@ -114,6 +120,14 @@ CREATE TABLE compound_three_primary_keys (
|
||||||
PRIMARY KEY (pk1, pk2, pk3)
|
PRIMARY KEY (pk1, pk2, pk3)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE TABLE foreign_key_references (
|
||||||
|
pk varchar(30) primary key,
|
||||||
|
foreign_key_with_label varchar(30),
|
||||||
|
foreign_key_with_no_label varchar(30),
|
||||||
|
FOREIGN KEY (foreign_key_with_label) REFERENCES simple_primary_key(id),
|
||||||
|
FOREIGN KEY (foreign_key_with_no_label) REFERENCES primary_key_multiple_columns(id)
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE sortable (
|
CREATE TABLE sortable (
|
||||||
pk1 varchar(30),
|
pk1 varchar(30),
|
||||||
pk2 varchar(30),
|
pk2 varchar(30),
|
||||||
|
@ -182,6 +196,10 @@ INSERT INTO simple_primary_key VALUES (1, 'hello');
|
||||||
INSERT INTO simple_primary_key VALUES (2, 'world');
|
INSERT INTO simple_primary_key VALUES (2, 'world');
|
||||||
INSERT INTO simple_primary_key VALUES (3, '');
|
INSERT INTO simple_primary_key VALUES (3, '');
|
||||||
|
|
||||||
|
INSERT INTO primary_key_multiple_columns VALUES (1, 'hey', 'world');
|
||||||
|
|
||||||
|
INSERT INTO foreign_key_references VALUES (1, 1, 1);
|
||||||
|
|
||||||
INSERT INTO complex_foreign_keys VALUES (1, 1, 2, 1);
|
INSERT INTO complex_foreign_keys VALUES (1, 1, 2, 1);
|
||||||
|
|
||||||
INSERT INTO [table/with/slashes.csv] VALUES (3, 'hey');
|
INSERT INTO [table/with/slashes.csv] VALUES (3, 'hey');
|
||||||
|
|
|
@ -14,7 +14,7 @@ def test_homepage(app_client):
|
||||||
assert response.json.keys() == {'test_tables': 0}.keys()
|
assert response.json.keys() == {'test_tables': 0}.keys()
|
||||||
d = response.json['test_tables']
|
d = response.json['test_tables']
|
||||||
assert d['name'] == 'test_tables'
|
assert d['name'] == 'test_tables'
|
||||||
assert d['tables_count'] == 11
|
assert d['tables_count'] == 13
|
||||||
|
|
||||||
|
|
||||||
def test_database_page(app_client):
|
def test_database_page(app_client):
|
||||||
|
@ -76,6 +76,25 @@ def test_database_page(app_client):
|
||||||
'foreign_keys': {'incoming': [], 'outgoing': []},
|
'foreign_keys': {'incoming': [], 'outgoing': []},
|
||||||
'label_column': None,
|
'label_column': None,
|
||||||
'primary_keys': ['pk1', 'pk2', 'pk3'],
|
'primary_keys': ['pk1', 'pk2', 'pk3'],
|
||||||
|
}, {
|
||||||
|
'columns': ['pk', 'foreign_key_with_label', 'foreign_key_with_no_label'],
|
||||||
|
'name': 'foreign_key_references',
|
||||||
|
'count': 1,
|
||||||
|
'hidden': False,
|
||||||
|
'foreign_keys': {
|
||||||
|
'incoming': [],
|
||||||
|
'outgoing': [{
|
||||||
|
'column': 'foreign_key_with_no_label',
|
||||||
|
'other_column': 'id',
|
||||||
|
'other_table': 'primary_key_multiple_columns'
|
||||||
|
}, {
|
||||||
|
'column': 'foreign_key_with_label',
|
||||||
|
'other_column': 'id',
|
||||||
|
'other_table': 'simple_primary_key',
|
||||||
|
}],
|
||||||
|
},
|
||||||
|
'label_column': None,
|
||||||
|
'primary_keys': ['pk'],
|
||||||
}, {
|
}, {
|
||||||
'columns': ['content', 'a', 'b', 'c'],
|
'columns': ['content', 'a', 'b', 'c'],
|
||||||
'name': 'no_primary_key',
|
'name': 'no_primary_key',
|
||||||
|
@ -84,6 +103,21 @@ def test_database_page(app_client):
|
||||||
'foreign_keys': {'incoming': [], 'outgoing': []},
|
'foreign_keys': {'incoming': [], 'outgoing': []},
|
||||||
'label_column': None,
|
'label_column': None,
|
||||||
'primary_keys': [],
|
'primary_keys': [],
|
||||||
|
}, {
|
||||||
|
'columns': ['id', 'content', 'content2'],
|
||||||
|
'name': 'primary_key_multiple_columns',
|
||||||
|
'count': 1,
|
||||||
|
'foreign_keys': {
|
||||||
|
'incoming': [{
|
||||||
|
'column': 'id',
|
||||||
|
'other_column': 'foreign_key_with_no_label',
|
||||||
|
'other_table': 'foreign_key_references'
|
||||||
|
}],
|
||||||
|
'outgoing': []
|
||||||
|
},
|
||||||
|
'hidden': False,
|
||||||
|
'label_column': None,
|
||||||
|
'primary_keys': ['id']
|
||||||
}, {
|
}, {
|
||||||
'columns': ['group', 'having', 'and'],
|
'columns': ['group', 'having', 'and'],
|
||||||
'name': 'select',
|
'name': 'select',
|
||||||
|
@ -93,12 +127,16 @@ def test_database_page(app_client):
|
||||||
'label_column': None,
|
'label_column': None,
|
||||||
'primary_keys': [],
|
'primary_keys': [],
|
||||||
}, {
|
}, {
|
||||||
'columns': ['pk', 'content'],
|
'columns': ['id', 'content'],
|
||||||
'name': 'simple_primary_key',
|
'name': 'simple_primary_key',
|
||||||
'count': 3,
|
'count': 3,
|
||||||
'hidden': False,
|
'hidden': False,
|
||||||
'foreign_keys': {
|
'foreign_keys': {
|
||||||
'incoming': [{
|
'incoming': [{
|
||||||
|
'column': 'id',
|
||||||
|
'other_column': 'foreign_key_with_label',
|
||||||
|
'other_table': 'foreign_key_references'
|
||||||
|
}, {
|
||||||
'column': 'id',
|
'column': 'id',
|
||||||
'other_column': 'f3',
|
'other_column': 'f3',
|
||||||
'other_table': 'complex_foreign_keys'
|
'other_table': 'complex_foreign_keys'
|
||||||
|
@ -113,8 +151,8 @@ def test_database_page(app_client):
|
||||||
}],
|
}],
|
||||||
'outgoing': [],
|
'outgoing': [],
|
||||||
},
|
},
|
||||||
'label_column': None,
|
'label_column': 'content',
|
||||||
'primary_keys': ['pk'],
|
'primary_keys': ['id'],
|
||||||
}, {
|
}, {
|
||||||
'columns': [
|
'columns': [
|
||||||
'pk1', 'pk2', 'content', 'sortable', 'sortable_with_nulls',
|
'pk1', 'pk2', 'content', 'sortable', 'sortable_with_nulls',
|
||||||
|
@ -202,16 +240,16 @@ def test_table_json(app_client):
|
||||||
response = app_client.get('/test_tables/simple_primary_key.json?_shape=objects', gather_request=False)
|
response = app_client.get('/test_tables/simple_primary_key.json?_shape=objects', gather_request=False)
|
||||||
assert response.status == 200
|
assert response.status == 200
|
||||||
data = response.json
|
data = response.json
|
||||||
assert data['query']['sql'] == 'select * from simple_primary_key order by pk limit 51'
|
assert data['query']['sql'] == 'select * from simple_primary_key order by id limit 51'
|
||||||
assert data['query']['params'] == {}
|
assert data['query']['params'] == {}
|
||||||
assert data['rows'] == [{
|
assert data['rows'] == [{
|
||||||
'pk': '1',
|
'id': '1',
|
||||||
'content': 'hello',
|
'content': 'hello',
|
||||||
}, {
|
}, {
|
||||||
'pk': '2',
|
'id': '2',
|
||||||
'content': 'world',
|
'content': 'world',
|
||||||
}, {
|
}, {
|
||||||
'pk': '3',
|
'id': '3',
|
||||||
'content': '',
|
'content': '',
|
||||||
}]
|
}]
|
||||||
|
|
||||||
|
@ -260,13 +298,13 @@ def test_table_shape_objects(app_client):
|
||||||
gather_request=False
|
gather_request=False
|
||||||
)
|
)
|
||||||
assert [{
|
assert [{
|
||||||
'pk': '1',
|
'id': '1',
|
||||||
'content': 'hello',
|
'content': 'hello',
|
||||||
}, {
|
}, {
|
||||||
'pk': '2',
|
'id': '2',
|
||||||
'content': 'world',
|
'content': 'world',
|
||||||
}, {
|
}, {
|
||||||
'pk': '3',
|
'id': '3',
|
||||||
'content': '',
|
'content': '',
|
||||||
}] == response.json['rows']
|
}] == response.json['rows']
|
||||||
|
|
||||||
|
@ -278,15 +316,15 @@ def test_table_shape_object(app_client):
|
||||||
)
|
)
|
||||||
assert {
|
assert {
|
||||||
'1': {
|
'1': {
|
||||||
'pk': '1',
|
'id': '1',
|
||||||
'content': 'hello',
|
'content': 'hello',
|
||||||
},
|
},
|
||||||
'2': {
|
'2': {
|
||||||
'pk': '2',
|
'id': '2',
|
||||||
'content': 'world',
|
'content': 'world',
|
||||||
},
|
},
|
||||||
'3': {
|
'3': {
|
||||||
'pk': '3',
|
'id': '3',
|
||||||
'content': '',
|
'content': '',
|
||||||
}
|
}
|
||||||
} == response.json['rows']
|
} == response.json['rows']
|
||||||
|
@ -520,13 +558,18 @@ def test_view(app_client):
|
||||||
def test_row(app_client):
|
def test_row(app_client):
|
||||||
response = app_client.get('/test_tables/simple_primary_key/1.json?_shape=objects', gather_request=False)
|
response = app_client.get('/test_tables/simple_primary_key/1.json?_shape=objects', gather_request=False)
|
||||||
assert response.status == 200
|
assert response.status == 200
|
||||||
assert [{'pk': '1', 'content': 'hello'}] == response.json['rows']
|
assert [{'id': '1', 'content': 'hello'}] == response.json['rows']
|
||||||
|
|
||||||
|
|
||||||
def test_row_foreign_key_tables(app_client):
|
def test_row_foreign_key_tables(app_client):
|
||||||
response = app_client.get('/test_tables/simple_primary_key/1.json?_extras=foreign_key_tables', gather_request=False)
|
response = app_client.get('/test_tables/simple_primary_key/1.json?_extras=foreign_key_tables', gather_request=False)
|
||||||
assert response.status == 200
|
assert response.status == 200
|
||||||
assert [{
|
assert [{
|
||||||
|
'column': 'id',
|
||||||
|
'count': 1,
|
||||||
|
'other_column': 'foreign_key_with_label',
|
||||||
|
'other_table': 'foreign_key_references'
|
||||||
|
}, {
|
||||||
'column': 'id',
|
'column': 'id',
|
||||||
'count': 1,
|
'count': 1,
|
||||||
'other_column': 'f3',
|
'other_column': 'f3',
|
||||||
|
|
|
@ -172,7 +172,7 @@ def test_table_html_simple_primary_key(app_client):
|
||||||
table = Soup(response.body, 'html.parser').find('table')
|
table = Soup(response.body, 'html.parser').find('table')
|
||||||
ths = table.findAll('th')
|
ths = table.findAll('th')
|
||||||
assert 'Link' == ths[0].string.strip()
|
assert 'Link' == ths[0].string.strip()
|
||||||
for expected_col, th in zip(('pk', 'content'), ths[1:]):
|
for expected_col, th in zip(('id', 'content'), ths[1:]):
|
||||||
a = th.find('a')
|
a = th.find('a')
|
||||||
assert expected_col == a.string
|
assert expected_col == a.string
|
||||||
assert a['href'].endswith('/simple_primary_key?_sort={}'.format(
|
assert a['href'].endswith('/simple_primary_key?_sort={}'.format(
|
||||||
|
@ -200,7 +200,7 @@ def test_row_html_simple_primary_key(app_client):
|
||||||
response = app_client.get('/test_tables/simple_primary_key/1', gather_request=False)
|
response = app_client.get('/test_tables/simple_primary_key/1', gather_request=False)
|
||||||
table = Soup(response.body, 'html.parser').find('table')
|
table = Soup(response.body, 'html.parser').find('table')
|
||||||
assert [
|
assert [
|
||||||
'pk', 'content'
|
'id', 'content'
|
||||||
] == [th.string.strip() for th in table.select('thead th')]
|
] == [th.string.strip() for th in table.select('thead th')]
|
||||||
assert [
|
assert [
|
||||||
[
|
[
|
||||||
|
@ -276,6 +276,20 @@ def test_table_html_compound_primary_key(app_client):
|
||||||
assert expected == [[str(td) for td in tr.select('td')] for tr in table.select('tbody tr')]
|
assert expected == [[str(td) for td in tr.select('td')] for tr in table.select('tbody tr')]
|
||||||
|
|
||||||
|
|
||||||
|
def test_table_html_foreign_key_links(app_client):
|
||||||
|
response = app_client.get('/test_tables/foreign_key_references', gather_request=False)
|
||||||
|
table = Soup(response.body, 'html.parser').find('table')
|
||||||
|
expected = [
|
||||||
|
[
|
||||||
|
'<td><a href="/test_tables/foreign_key_references/1">1</a></td>',
|
||||||
|
'<td>1</td>',
|
||||||
|
'<td><a href="/test_tables/simple_primary_key/1">hello</a>\xa0<em>1</em></td>',
|
||||||
|
'<td><a href="/test_tables/primary_key_multiple_columns/1">1</a></td>'
|
||||||
|
]
|
||||||
|
]
|
||||||
|
assert expected == [[str(td) for td in tr.select('td')] for tr in table.select('tbody tr')]
|
||||||
|
|
||||||
|
|
||||||
def test_row_html_compound_primary_key(app_client):
|
def test_row_html_compound_primary_key(app_client):
|
||||||
response = app_client.get('/test_tables/compound_primary_key/a,b', gather_request=False)
|
response = app_client.get('/test_tables/compound_primary_key/a,b', gather_request=False)
|
||||||
table = Soup(response.body, 'html.parser').find('table')
|
table = Soup(response.body, 'html.parser').find('table')
|
||||||
|
|
Ładowanie…
Reference in New Issue