]> git.immae.eu Git - github/fretlink/time-picker.git/commitdiff
add picker test case
authorMG12 <wuzhao.mail@gmail.com>
Thu, 3 Dec 2015 15:36:20 +0000 (23:36 +0800)
committerMG12 <wuzhao.mail@gmail.com>
Thu, 3 Dec 2015 15:36:20 +0000 (23:36 +0800)
HISTORY.md
examples/pick-time.js
package.json
tests/TimePicker.spec.jsx [new file with mode: 0644]
tests/index.spec.js [new file with mode: 0644]
tests/runner.html [new file with mode: 0644]

index ed2c9b2ed0e669d975caa735854b2231ac7769f3..fa9b5915acda897ba6becd8c39263c22926bc466 100644 (file)
@@ -2,6 +2,12 @@
 
 ---
 
+0.7.2 / 2015-12-03
+------------------
+
+`fix` IE8 compatible.
+`new` add test users.
+
 0.7.1 / 2015-11-20
 ------------------
 
index 178b622f66727f20d62b8453a122046472297ba0..f26952c0a988eacdf17466c2ea5a1058e0f50f70 100644 (file)
@@ -29,6 +29,3 @@ ReactDom.render(
               onChange={onChange}/>,
   document.getElementById('__react-content')
 );
-
-
-console.log(zhCn);
\ No newline at end of file
index f9246c054faaa48d7f6809758c48c04baf2a6560..59ca7841696c85860bcc6d120629ae06f63d3c53 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "rc-time-picker",
-  "version": "1.0.0-alpha1",
+  "version": "1.0.0-alpha2",
   "description": "React TimePicker",
   "keywords": [
     "react",
diff --git a/tests/TimePicker.spec.jsx b/tests/TimePicker.spec.jsx
new file mode 100644 (file)
index 0000000..5b08a81
--- /dev/null
@@ -0,0 +1,145 @@
+import ReactDOM from 'react-dom';
+import React from 'react';
+import TimePicker from '../src/TimePicker';
+
+import TestUtils from 'react-addons-test-utils';
+var Simulate = TestUtils.Simulate;
+import expect from 'expect.js';
+import async from 'async';
+
+import DateTimeFormat from 'gregorian-calendar-format';
+import GregorianCalendar from 'gregorian-calendar';
+import zhCn from 'gregorian-calendar/lib/locale/zh_CN';
+import TimePickerLocale from '../src/locale/zh_CN';
+
+describe('TimePicker', function () {
+  var div;
+  var showSecond = true;
+  var str = showSecond ? 'HH:mm:ss' : 'HH:mm';
+  var formatter = new DateTimeFormat(str);
+
+  function renderPicker(props) {
+    return ReactDOM.render(
+      <TimePicker
+        formatter={formatter}
+        locale={TimePickerLocale}
+        showSecond={showSecond}
+        defaultValue={formatTime('27:57:58', formatter)}
+        {...props}
+      />, div);
+  }
+
+  function formatTime(time, formatter) {
+    return formatter.parse(time, {
+      locale: zhCn,
+      obeyCount: true,
+    });
+  }
+
+  beforeEach(function () {
+    div = document.createElement('div');
+    document.body.appendChild(div);
+  });
+
+  afterEach(function () {
+    ReactDOM.unmountComponentAtNode(div);
+    document.body.removeChild(div);
+  });
+
+  it('popup correctly', function (done) {
+    var change;
+    var picker = renderPicker({
+      onChange: function (v) {
+        change = v;
+      }
+    });
+    expect(picker.state.open).not.to.be.ok();
+    var input = TestUtils.scryRenderedDOMComponentsWithClass(picker, 'rc-time-picker-input')[0];
+    async.series([function (next) {
+      Simulate.click(input);
+      setTimeout(next, 100);
+    }, function (next) {
+      expect(TestUtils.scryRenderedDOMComponentsWithClass(picker.panelInstance, 'rc-time-picker-panel-inner')[0]).to.be.ok();
+      expect(picker.state.open).to.be(true);
+      var hour = TestUtils.scryRenderedDOMComponentsWithTag(picker.panelInstance, 'li')[1];
+      Simulate.click(hour);
+      setTimeout(next, 100);
+    }, function (next) {
+      expect(change).to.be.ok();
+      expect(change.getHourOfDay()).to.be(1);
+      expect(change.getMinutes()).to.be(57);
+      expect(change.getSeconds()).to.be(58);
+      expect(ReactDOM.findDOMNode(input).value).to.be('01:57:58');
+      expect(picker.state.open).to.be.ok();
+      next();
+    }], function () {
+      done();
+    });
+  });
+
+  describe('render panel to body', function () {
+    it('support correctly', function (done) {
+      var change;
+      var picker = renderPicker({
+        onChange: function (v) {
+          change = v;
+        }
+      });
+      expect(picker.state.open).not.to.be.ok();
+      var input = TestUtils.scryRenderedDOMComponentsWithClass(picker, 'rc-time-picker-input')[0];
+      async.series([function (next) {
+        Simulate.click(input);
+        setTimeout(next, 100);
+      }, function (next) {
+        expect(TestUtils.scryRenderedDOMComponentsWithClass(picker, 'rc-time-picker-panel-inner')[0]).not.to.be.ok();
+        expect(picker.state.open).to.be(true);
+        var hour = TestUtils.scryRenderedDOMComponentsWithTag(picker.panelInstance, 'li')[1];
+        Simulate.click(hour);
+        setTimeout(next, 100);
+      }, function (next) {
+        expect(change).to.be.ok();
+        expect(change.getHourOfDay()).to.be(1);
+        expect(change.getMinutes()).to.be(57);
+        expect(change.getSeconds()).to.be(58);
+        expect(ReactDOM.findDOMNode(input).value).to.be('01:57:58');
+        expect(picker.state.open).to.be.ok();
+        next();
+      }], function () {
+        done();
+      });
+    });
+
+    it('destroy correctly', function (done) {
+      var change;
+      var picker = renderPicker({
+        onChange: function (v) {
+          change = v;
+        }
+      });
+      expect(picker.state.open).not.to.be.ok();
+      var input = TestUtils.scryRenderedDOMComponentsWithClass(picker, 'rc-time-picker-input')[0];
+      async.series([function (next) {
+        Simulate.click(input);
+        setTimeout(next, 100);
+      }, function (next) {
+        expect(TestUtils.scryRenderedDOMComponentsWithClass(picker, 'rc-time-picker-panel-inner')[0]).not.to.be.ok();
+        expect(picker.state.open).to.be(true);
+        if (document.querySelectorAll) {
+          expect(document.querySelectorAll('.rc-time-picker').length).not.to.be(0);
+        }
+        expect(TestUtils.scryRenderedDOMComponentsWithTag(picker.panelInstance, 'li')[0]).to.be.ok();
+        ReactDOM.unmountComponentAtNode(div);
+        setTimeout(next, 100);
+      }, function (next) {
+        if (document.querySelectorAll) {
+          expect(document.querySelectorAll('.rc-time-picker').length).to.be(0);
+        }
+        expect(picker.panelInstance).not.to.be.ok();
+        next();
+      }], function () {
+        done();
+      });
+    });
+  });
+
+});
diff --git a/tests/index.spec.js b/tests/index.spec.js
new file mode 100644 (file)
index 0000000..58c049a
--- /dev/null
@@ -0,0 +1 @@
+import './TimePicker.spec';
diff --git a/tests/runner.html b/tests/runner.html
new file mode 100644 (file)
index 0000000..39802f6
--- /dev/null
@@ -0,0 +1 @@
+stub