-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
26 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ describe('ClickhouseSchema Tests', () => { | |
email: { type: ClickhouseTypes.CHString }, | ||
age: { type: ClickhouseTypes.CHUInt8 } | ||
} | ||
const options: ChSchemaOptions<typeof schemaDefinition> = { | ||
const options: ChSchemaOptions = { | ||
primary_key: 'id', | ||
table_name: 'users_table' | ||
} | ||
|
@@ -26,7 +26,7 @@ describe('ClickhouseSchema Tests', () => { | |
email: { type: ClickhouseTypes.CHString }, | ||
age: { type: ClickhouseTypes.CHUInt8 } | ||
} | ||
const options: ChSchemaOptions<typeof schemaDefinition> = { | ||
const options: ChSchemaOptions = { | ||
table_name: 'users_table' | ||
} | ||
|
||
|
@@ -42,7 +42,7 @@ describe('ClickhouseSchema Tests', () => { | |
email: { type: ClickhouseTypes.CHString }, | ||
age: { type: ClickhouseTypes.CHUInt8 } | ||
} | ||
const options: ChSchemaOptions<typeof schemaDefinition> = { | ||
const options: ChSchemaOptions = { | ||
primary_key: 'id', | ||
table_name: 'users_table' | ||
} | ||
|
@@ -60,7 +60,7 @@ describe('ClickhouseSchema Tests', () => { | |
email: { type: ClickhouseTypes.CHString, default: '[email protected]' }, | ||
age: { type: ClickhouseTypes.CHUInt8 } | ||
} | ||
const options: ChSchemaOptions<typeof schemaDefinition> = { | ||
const options: ChSchemaOptions = { | ||
primary_key: 'id', | ||
table_name: 'users_table' | ||
} | ||
|
@@ -78,7 +78,7 @@ describe('ClickhouseSchema Tests', () => { | |
email: { type: ClickhouseTypes.CHString, default: '[email protected]' }, | ||
age: { type: ClickhouseTypes.CHUInt8, default: 18 } | ||
} | ||
const options: ChSchemaOptions<typeof schemaDefinition> = { | ||
const options: ChSchemaOptions = { | ||
primary_key: 'id', | ||
table_name: 'users_table', | ||
additional_options: ['COMMENT \'This table provides user details\''] | ||
|
@@ -95,7 +95,7 @@ describe('ClickhouseSchema Tests', () => { | |
name: { type: ClickhouseTypes.CHString, default: 'John Doe' }, | ||
email: { type: ClickhouseTypes.CHString } | ||
} | ||
const options: ChSchemaOptions<typeof schemaDefinition> = { | ||
const options: ChSchemaOptions = { | ||
table_name: 'users_table', | ||
order_by: 'id' | ||
} | ||
|
@@ -111,7 +111,7 @@ describe('ClickhouseSchema Tests', () => { | |
name: { type: ClickhouseTypes.CHString, default: 'John Doe' }, | ||
email: { type: ClickhouseTypes.CHString } | ||
} | ||
const options: ChSchemaOptions<typeof schemaDefinition> = { | ||
const options: ChSchemaOptions = { | ||
table_name: 'users_table', | ||
primary_key: 'id', | ||
on_cluster: 'users_cluster' | ||
|
@@ -123,18 +123,19 @@ describe('ClickhouseSchema Tests', () => { | |
}) | ||
|
||
it('should correctly generate a create table query with a specified engine', () => { | ||
const schema = new ClickhouseSchema({ | ||
const schemaDefinition = { | ||
id: { type: ClickhouseTypes.CHUUID }, | ||
name: { type: ClickhouseTypes.CHString, default: 'John Doe' }, | ||
email: { type: ClickhouseTypes.CHString } | ||
}, { | ||
} | ||
const options: ChSchemaOptions = { | ||
table_name: 'users_table', | ||
primary_key: 'id', | ||
engine: 'ReplicatedMergeTree()' | ||
}) | ||
} | ||
const schema = new ClickhouseSchema(schemaDefinition, options) | ||
const expectedQuery = 'CREATE TABLE IF NOT EXISTS users_table\n(\nid UUID,\nname String DEFAULT \'John Doe\',\nemail String\n)\nENGINE = ReplicatedMergeTree()\nPRIMARY KEY id' | ||
const query = schema.GetCreateTableQuery() | ||
console.log(query) | ||
expect(query).toEqual(expectedQuery) | ||
}) | ||
|
||
|
@@ -144,7 +145,7 @@ describe('ClickhouseSchema Tests', () => { | |
name: { type: ClickhouseTypes.CHString, default: 'John Doe' }, | ||
email: { type: ClickhouseTypes.CHString } | ||
} | ||
const options: ChSchemaOptions<typeof schemaDefinition> = { | ||
const options: ChSchemaOptions = { | ||
database: 'users_db', | ||
table_name: 'users_table', | ||
primary_key: 'id' | ||
|
@@ -161,7 +162,7 @@ describe('ClickhouseSchema Tests', () => { | |
name: { type: ClickhouseTypes.CHString, default: 'John Doe' }, | ||
email: { type: ClickhouseTypes.CHString } | ||
} | ||
const options: ChSchemaOptions<typeof schemaDefinition> = { | ||
const options: ChSchemaOptions = { | ||
table_name: 'users_table', | ||
primary_key: 'id', | ||
on_cluster: 'users_cluster', | ||
|
@@ -191,7 +192,7 @@ describe('ClickhouseSchema Tests', () => { | |
name: { type: ClickhouseTypes.CHString, default: 'John Doe' }, | ||
email: { type: ClickhouseTypes.CHString } | ||
} | ||
const options: ChSchemaOptions<typeof schemaDefinition> = { | ||
const options: ChSchemaOptions = { | ||
table_name: 'users_table', | ||
primary_key: 'id', | ||
on_cluster: 'users_cluster', | ||
|
6a17f2d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Coverage report
Test suite run success
21 tests passing in 2 suites.
Report generated by 🧪jest coverage report action from 6a17f2d