tasktracker_live_test.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. var App = require('app');
  19. require('views/main/dashboard/widget');
  20. require('views/main/dashboard/widgets/text_widget');
  21. require('views/main/dashboard/widgets/tasktracker_live');
  22. describe('App.TaskTrackerUpView', function() {
  23. var tests = [
  24. {
  25. data: 100,
  26. e: {
  27. isRed: false,
  28. isOrange: false,
  29. isGreen: true
  30. }
  31. },
  32. {
  33. data: 0,
  34. e: {
  35. isRed: true,
  36. isOrange: false,
  37. isGreen: false
  38. }
  39. },
  40. {
  41. data: 50,
  42. e: {
  43. isRed: false,
  44. isOrange: true,
  45. isGreen: false
  46. }
  47. }
  48. ];
  49. tests.forEach(function(test) {
  50. describe('', function() {
  51. var taskTrackerUpView = App.TaskTrackerUpView.create({model_type:null, data: test.data, content: test.data.toString()});
  52. it('isRed', function() {
  53. expect(taskTrackerUpView.get('isRed')).to.equal(test.e.isRed);
  54. });
  55. it('isOrange', function() {
  56. expect(taskTrackerUpView.get('isOrange')).to.equal(test.e.isOrange);
  57. });
  58. it('isGreen', function() {
  59. expect(taskTrackerUpView.get('isGreen')).to.equal(test.e.isGreen);
  60. });
  61. });
  62. });
  63. });