test case is only for internal.
This commit is contained in:
parent
ae68c561f4
commit
fead1f436a
|
@ -276,30 +276,34 @@ describe.each([
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
it("shouldn't allow duplicate column names", async () => {
|
isInternal &&
|
||||||
const saveTableRequest: SaveTableRequest = {
|
it("shouldn't allow duplicate column names", async () => {
|
||||||
...basicTable(),
|
const saveTableRequest: SaveTableRequest = {
|
||||||
}
|
...basicTable(),
|
||||||
saveTableRequest.schema["Type"] = { type: FieldType.STRING, name: "Type" }
|
}
|
||||||
await config.api.table.save(saveTableRequest, {
|
saveTableRequest.schema["Type"] = {
|
||||||
status: 400,
|
type: FieldType.STRING,
|
||||||
body: {
|
name: "Type",
|
||||||
message:
|
}
|
||||||
'Column "type" is duplicated - make sure there are no duplicate columns names, this is case insensitive.',
|
await config.api.table.save(saveTableRequest, {
|
||||||
},
|
status: 400,
|
||||||
|
body: {
|
||||||
|
message:
|
||||||
|
'Column "type" is duplicated - make sure there are no duplicate columns names, this is case insensitive.',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
saveTableRequest.schema = {
|
||||||
|
foo: { type: FieldType.STRING, name: "foo" },
|
||||||
|
FOO: { type: FieldType.STRING, name: "FOO" },
|
||||||
|
}
|
||||||
|
await config.api.table.save(saveTableRequest, {
|
||||||
|
status: 400,
|
||||||
|
body: {
|
||||||
|
message:
|
||||||
|
'Column "foo" is duplicated - make sure there are no duplicate columns names, this is case insensitive.',
|
||||||
|
},
|
||||||
|
})
|
||||||
})
|
})
|
||||||
saveTableRequest.schema = {
|
|
||||||
foo: { type: FieldType.STRING, name: "foo" },
|
|
||||||
FOO: { type: FieldType.STRING, name: "FOO" },
|
|
||||||
}
|
|
||||||
await config.api.table.save(saveTableRequest, {
|
|
||||||
status: 400,
|
|
||||||
body: {
|
|
||||||
message:
|
|
||||||
'Column "foo" is duplicated - make sure there are no duplicate columns names, this is case insensitive.',
|
|
||||||
},
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it("should add a new column for an internal DB table", async () => {
|
it("should add a new column for an internal DB table", async () => {
|
||||||
const saveTableRequest: SaveTableRequest = {
|
const saveTableRequest: SaveTableRequest = {
|
||||||
|
|
Loading…
Reference in New Issue