Skip to content

Commit

Permalink
test: move the test to the right file
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinq.qk committed Feb 13, 2019
1 parent aa862ab commit 4d17bd8
Show file tree
Hide file tree
Showing 3 changed files with 157 additions and 132 deletions.
77 changes: 77 additions & 0 deletions test/NumberField_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,5 +290,82 @@ describe("NumberField", () => {

expect(node.querySelector("select").id).eql("root");
});

it("should render a select element if set the enum.", () => {
const schema = {
type: "object",
properties: {
foo: {
type: "number",
enum: [0],
},
},
};

const { node } = createFormComponent({
schema,
});

const selects = node.querySelectorAll("select");
expect(selects).to.have.length.of(1);
});

it("should render a select element and it's value is empty, if set the enum and the default value is undefined.", () => {
const schema = {
type: "object",
properties: {
foo: {
type: "number",
enum: [0],
},
},
};

const { node } = createFormComponent({
schema,
});

const selects = node.querySelectorAll("select");
expect(selects[0].value).eql("");
});

it("should render a select element and it's first option has an empty innerHTML, if set the enum and the default value is undefined.", () => {
const schema = {
type: "object",
properties: {
foo: {
type: "number",
enum: [0],
},
},
};

const { node } = createFormComponent({
schema,
});

const options = node.querySelectorAll("option");
expect(options[0].innerHTML).eql("");
});

it("should render a select element and it's first option is '0', if set the enum and the default value is 0.", () => {
const schema = {
type: "object",
properties: {
foo: {
type: "number",
enum: [0],
default: 0,
},
},
};

const { node } = createFormComponent({
schema,
});

const options = node.querySelectorAll("option");
expect(options[0].innerHTML).eql("0");
});
});
});
80 changes: 80 additions & 0 deletions test/StringField_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,86 @@ describe("StringField", () => {

expect(node.querySelector("#custom")).to.exist;
});

it("should render a select element and it's first option is 'false', if set the enum and the default value is false.", () => {
const schema = {
type: "object",
properties: {
foo: {
type: "string",
enum: [false, true],
default: false,
},
},
};

const { node } = createFormComponent({
schema,
});

const options = node.querySelectorAll("option");
expect(options[0].innerHTML).eql("false");
});

it("should render a select element and the option's length is equal the enum's length, if set the enum.", () => {
const schema = {
type: "object",
properties: {
foo: {
type: "string",
enum: [false, true],
default: false,
},
},
};

const { node } = createFormComponent({
schema,
});

const options = node.querySelectorAll("option");
expect(options.length).eql(2);
});

it("should render a select element and the option's length is equal the enum's length, if set the enum and the default value is empty.", () => {
const schema = {
type: "object",
properties: {
foo: {
type: "string",
enum: ["", "1"],
default: "",
},
},
};

const { node } = createFormComponent({
schema,
});

const options = node.querySelectorAll("option");
expect(options.length).eql(2);
});

it("shouldn't render two empty options, when the default value is empty.", () => {
const schema = {
type: "object",
properties: {
foo: {
type: "string",
enum: [""],
default: "",
},
},
};

const { node } = createFormComponent({
schema,
});

const options = node.querySelectorAll("option");
expect(options.length).eql(1);
});
});

describe("TextareaWidget", () => {
Expand Down
132 changes: 0 additions & 132 deletions test/enum_test.js

This file was deleted.

0 comments on commit 4d17bd8

Please sign in to comment.