drift/sqlparser/test/parser/moor_file_test.dart

94 lines
2.5 KiB
Dart

import 'package:sqlparser/sqlparser.dart';
import 'package:test/test.dart';
import 'utils.dart';
const content = r'''
import 'other.dart';
import 'another.moor';
CREATE TABLE tbl (
id INT NOT NULL PRIMARY KEY AUTOINCREMENT,
-- this is a single-line comment
place VARCHAR REFERENCES other(location)
) AS RowName
all: SELECT /* COUNT(*), */ * FROM tbl WHERE $predicate;
@special: SELECT * FROM tbl;
typeHints(:foo AS TEXT): SELECT :foo;
''';
void main() {
test('parses moor files', () {
testMoorFile(
content,
MoorFile([
ImportStatement('other.dart'),
ImportStatement('another.moor'),
CreateTableStatement(
tableName: 'tbl',
columns: [
ColumnDefinition(
columnName: 'id',
typeName: 'INT',
constraints: [
NotNull(null),
PrimaryKeyColumn(null, autoIncrement: true),
],
),
ColumnDefinition(
columnName: 'place',
typeName: 'VARCHAR',
constraints: [
ForeignKeyColumnConstraint(
null,
ForeignKeyClause(
foreignTable: TableReference('other', null),
columnNames: [
Reference(columnName: 'location'),
],
),
),
],
),
],
overriddenDataClassName: 'RowName',
),
DeclaredStatement(
SimpleName('all'),
SelectStatement(
columns: [StarResultColumn(null)],
from: [TableReference('tbl', null)],
where: DartExpressionPlaceholder(name: 'predicate'),
),
),
DeclaredStatement(
SpecialStatementIdentifier('special'),
SelectStatement(
columns: [StarResultColumn(null)],
from: [TableReference('tbl', null)],
),
),
DeclaredStatement(
SimpleName('typeHints'),
SelectStatement(columns: [
ExpressionResultColumn(
expression: ColonNamedVariable(
ColonVariableToken(fakeSpan(':foo'), ':foo'),
),
),
]),
parameters: [
VariableTypeHint(
ColonNamedVariable(
ColonVariableToken(fakeSpan(':foo'), ':foo'),
),
'TEXT',
)
],
),
]),
);
});
}