mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 04:31:36 +08:00
219 lines
4.5 KiB
TypeScript
219 lines
4.5 KiB
TypeScript
import { Feature } from 'ol';
|
|
|
|
import { ComparisonOperation } from '@grafana/schema';
|
|
|
|
import { checkFeatureMatchesStyleRule } from './checkFeatureMatchesStyleRule';
|
|
|
|
describe('check if feature matches style rule', () => {
|
|
it('can compare with numbers', () => {
|
|
const feature = new Feature({
|
|
number: 3,
|
|
});
|
|
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.EQ,
|
|
property: 'number',
|
|
value: 3,
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(true);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.EQ,
|
|
property: 'number',
|
|
value: '3',
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(true);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.LT,
|
|
property: 'number',
|
|
value: 2,
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(false);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.LTE,
|
|
property: 'number',
|
|
value: 3,
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(true);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.GT,
|
|
property: 'number',
|
|
value: 3,
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(false);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.GTE,
|
|
property: 'number',
|
|
value: 3,
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(true);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.NEQ,
|
|
property: 'number',
|
|
value: 3,
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(false);
|
|
});
|
|
it('can compare with strings', () => {
|
|
const feature = new Feature({
|
|
string: 'b',
|
|
});
|
|
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.EQ,
|
|
property: 'string',
|
|
value: 'B',
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(false);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.LT,
|
|
property: 'string',
|
|
value: 'c',
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(true);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.LTE,
|
|
property: 'string',
|
|
value: 'bc',
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(true);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.GT,
|
|
property: 'string',
|
|
value: 'ab',
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(true);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.GTE,
|
|
property: 'string',
|
|
value: 'abc',
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(true);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.NEQ,
|
|
property: 'string',
|
|
value: 'b',
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(false);
|
|
});
|
|
it('can compare with booleans', () => {
|
|
const feature = new Feature({
|
|
name: 'test polygon',
|
|
});
|
|
|
|
feature.setProperties({ boolean: false });
|
|
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.EQ,
|
|
property: 'boolean',
|
|
value: false,
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(true);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.LT,
|
|
property: 'boolean',
|
|
value: true,
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(true);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.LTE,
|
|
property: 'boolean',
|
|
value: true,
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(true);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.GT,
|
|
property: 'boolean',
|
|
value: false,
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(false);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.GTE,
|
|
property: 'boolean',
|
|
value: false,
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(true);
|
|
expect(
|
|
checkFeatureMatchesStyleRule(
|
|
{
|
|
operation: ComparisonOperation.NEQ,
|
|
property: 'boolean',
|
|
value: false,
|
|
},
|
|
feature
|
|
)
|
|
).toEqual(false);
|
|
});
|
|
});
|