55 lines
1.9 KiB
JavaScript
55 lines
1.9 KiB
JavaScript
|
import mapping_engine from '../mappings/engine.ts'
|
||
|
import { mappingRemoveAll } from '../data_other/testing/mappings_to_test'
|
||
|
import MappingConfigType, {BoundingBoxCoordinatesType, FeatureCollection} from "../mappings/mapping-config.type";
|
||
|
|
||
|
const testingGeoJson = require('../data_other/testing/testing.json')
|
||
|
|
||
|
|
||
|
|
||
|
// import { describe, expect, test } from '@jest/globals'
|
||
|
|
||
|
describe('mapping properties with rich mapping engine', () => {
|
||
|
|
||
|
// test('do not add properties at all when there is nothing in tags of the mapping config', () => {
|
||
|
//
|
||
|
// })
|
||
|
test('remove all properties when mapping says so', () => {
|
||
|
|
||
|
let Mapping_engine = new mapping_engine(mappingRemoveAll)
|
||
|
|
||
|
let mapped_point = Mapping_engine.mapElementFromConf(testingGeoJson.features[0])
|
||
|
expect(mapped_point).toBeTruthy()
|
||
|
// expect(mapped_point.properties).toBe([])
|
||
|
|
||
|
})
|
||
|
// test('maps simple key to key, and keep the same value', () => { })
|
||
|
// test('ignore one value', () => { })
|
||
|
// test('conditional value', () => { })
|
||
|
// test('conditional transform', () => { })
|
||
|
// test('conditional truthy transform', () => { })
|
||
|
// test('conditional falsy transform', () => { })
|
||
|
})
|
||
|
|
||
|
xdescribe('filters points', () => {
|
||
|
test('filter no points', () => { })
|
||
|
test('filter only one point', () => { })
|
||
|
test('filter X number of points', () => { })
|
||
|
test('filter city points', () => { })
|
||
|
test('filter bounding box', () => { })
|
||
|
test('filter combo, city', () => { })
|
||
|
test('filter combo, city + bbox', () => { })
|
||
|
test('filter combo, city + bbox + offset', () => { })
|
||
|
})
|
||
|
|
||
|
/**
|
||
|
* thats a roadmap, yes
|
||
|
*/
|
||
|
xdescribe('infer domain of values from csv file', () => {
|
||
|
test('gets the list of unique values in column', () => { })
|
||
|
})
|
||
|
xdescribe('infer domain of values from geojson file', () => {
|
||
|
test('gets the list of unique values in column', () => { })
|
||
|
})
|
||
|
xdescribe('build mapping engine config from unique values', () => {
|
||
|
test('builds a valid mapping config', () => { })
|
||
|
})
|