Skip to content

Commit

Permalink
Merge pull request #2088 from c3js/feature/refactor-data.convert
Browse files Browse the repository at this point in the history
[Refactor] Write unit tests of convert(Rows|Columns)ToData
  • Loading branch information
masayuki0812 committed Jul 8, 2017
2 parents 78ded54 + 0fc1ae7 commit 39caf93
Show file tree
Hide file tree
Showing 8 changed files with 181 additions and 26 deletions.
4 changes: 2 additions & 2 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ module.exports = function(config) {
files: [
'c3.css',
'spec/*-helper.js',
'spec/*-spec.js'
'spec/*.js'
],
preprocessors: {
'spec/c3-helper.js': ['browserify']
'spec/*.js': ['browserify']
},
browserify: {
debug: true,
Expand Down
26 changes: 25 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"lint": "jshint --reporter=node_modules/jshint-stylish src/ spec/",
"build": "npm run build:js && npm run build:css",
"build:js": "npm run build:js:rollup && npm run build:js:uglify",
"build:js:rollup": "rollup -f umd --name c3 --globals d3:d3 src/index.js > c3.js",
"build:js:rollup": "rollup -c > c3.js",
"build:js:uglify": "uglifyjs c3.js --compress --mangle -o c3.min.js",
"build:css": "npm run build:css:sass && npm run build:css:min",
"build:css:sass": "node-sass src/scss/main.scss > c3.css",
Expand Down Expand Up @@ -41,6 +41,7 @@
"d3": "~3.5.0"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
Expand All @@ -60,12 +61,14 @@
"node-static": "^0.7.9",
"nodemon": "^1.11.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"uglify-js": "^3.0.15",
"watchify": "^3.9.0"
},
"nyc": {
"exclude": [
"src/polyfill.js"
"src/polyfill.js",
"spec/"
]
}
}
15 changes: 15 additions & 0 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import babel from 'rollup-plugin-babel';

export default {
entry: 'src/index.js',
format: 'umd',
moduleName: 'c3',
plugins: [babel({
presets: [['es2015', {
modules: false
}]],
plugins: [
'external-helpers'
]
})]
};
97 changes: 97 additions & 0 deletions spec/data.convert.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
import c3 from '../src';

const $$ = c3.chart.internal.fn;

describe('$$.convertColumnsToData', () => {
it('converts column data to normalized data', () => {
const data = $$.convertColumnsToData([
["cat1", "a", "b", "c", "d"],
["data1", 30, 200, 100, 400],
["cat2", "b", "a", "c", "d", "e", "f"],
["data2", 400, 60, 200, 800, 10, 10]
]);

expect(data).toEqual([{
cat1: 'a',
data1: 30,
cat2: 'b',
data2: 400
}, {
cat1: 'b',
data1: 200,
cat2: 'a',
data2: 60
}, {
cat1: 'c',
data1: 100,
cat2: 'c',
data2: 200
}, {
cat1: 'd',
data1: 400,
cat2: 'd',
data2: 800
}, {
cat2: 'e',
data2: 10
}, {
cat2: 'f',
data2: 10
}]);
});

it('throws when the column data contains undefined', () => {
expect(() => $$.convertColumnsToData([
["cat1", "a", "b", "c", "d"],
["data1", undefined]
])).toThrowError(Error, /Source data is missing a component/);
});
});

describe('$$.convertRowsToData', () => {
it('converts the row data to normalized data', () => {
const data = $$.convertRowsToData([
['data1', 'data2', 'data3'],
[90, 120, 300],
[40, 160, 240],
[50, 200, 290],
[120, 160, 230],
[80, 130, 300],
[90, 220, 320]
]);

expect(data).toEqual([{
data1: 90,
data2: 120,
data3: 300
}, {
data1: 40,
data2: 160,
data3: 240
}, {
data1: 50,
data2: 200,
data3: 290
}, {
data1: 120,
data2: 160,
data3: 230
}, {
data1: 80,
data2: 130,
data3: 300
}, {
data1: 90,
data2: 220,
data3: 320
}]);
});

it('throws when the row data contains undefined', () => {
expect(() => $$.convertRowsToData([
['data1', 'data2', 'data3'],
[40, 160, 240],
[90, 120, undefined]
])).toThrowError(Error, /Source data is missing a component/);
});
});
4 changes: 2 additions & 2 deletions spec/shape.line-spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { parseSvgPath } from './svg-helper';

describe('c3 chart shape line', function () {
'use strict';

Expand All @@ -7,8 +9,6 @@ describe('c3 chart shape line', function () {
chart = window.initChart(chart, args, done);
});

var parseSvgPath = window.parseSvgPath;

describe('shape-rendering for line chart', function () {

beforeAll(function () {
Expand Down
3 changes: 1 addition & 2 deletions spec/svg-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
* @param {String} d SvgPath d attribute.]
* @return {Array} an array of drawing commands.
*/

function parseSvgPath(d) { //jshint ignore:line
export function parseSvgPath(d) { //jshint ignore:line
'use strict';

var commands = [];
Expand Down
51 changes: 34 additions & 17 deletions src/data.convert.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,36 +89,53 @@ c3_chart_internal_fn.findValueInJson = function (object, path) {
}
return object;
};
c3_chart_internal_fn.convertRowsToData = function (rows) {
var keys = rows[0], new_row = {}, new_rows = [], i, j;
for (i = 1; i < rows.length; i++) {
new_row = {};
for (j = 0; j < rows[i].length; j++) {

/**
* Converts the rows to normalized data.
* @param {any[][]} rows The row data
* @return {Object[]}
*/
c3_chart_internal_fn.convertRowsToData = (rows) => {
const newRows = [];
const keys = rows[0];

for (let i = 1; i < rows.length; i++) {
const newRow = {};
for (let j = 0; j < rows[i].length; j++) {
if (isUndefined(rows[i][j])) {
throw new Error("Source data is missing a component at (" + i + "," + j + ")!");
}
new_row[keys[j]] = rows[i][j];
newRow[keys[j]] = rows[i][j];
}
new_rows.push(new_row);
newRows.push(newRow);
}
return new_rows;
return newRows;
};
c3_chart_internal_fn.convertColumnsToData = function (columns) {
var new_rows = [], i, j, key;
for (i = 0; i < columns.length; i++) {
key = columns[i][0];
for (j = 1; j < columns[i].length; j++) {
if (isUndefined(new_rows[j - 1])) {
new_rows[j - 1] = {};

/**
* Converts the columns to normalized data.
* @param {any[][]} columns The column data
* @return {Object[]}
*/
c3_chart_internal_fn.convertColumnsToData = (columns) => {
const newRows = [];

for (let i = 0; i < columns.length; i++) {
const key = columns[i][0];
for (let j = 1; j < columns[i].length; j++) {
if (isUndefined(newRows[j - 1])) {
newRows[j - 1] = {};
}
if (isUndefined(columns[i][j])) {
throw new Error("Source data is missing a component at (" + i + "," + j + ")!");
}
new_rows[j - 1][key] = columns[i][j];
newRows[j - 1][key] = columns[i][j];
}
}
return new_rows;

return newRows;
};

c3_chart_internal_fn.convertDataToTargets = function (data, appendXs) {
var $$ = this, config = $$.config,
ids = $$.d3.keys(data[0]).filter($$.isNotX, $$),
Expand Down

0 comments on commit 39caf93

Please sign in to comment.