@rdf-esm/data-model
Version:
A basic implementation of the RDFJS Data Model
67 lines (50 loc) • 2.09 kB
JavaScript
const assert = require('assert')
const { describe, it } = require('mocha')
function runTests (DataFactory) {
describe('.namedNode', function () {
it('should be a static method', function () {
assert.strictEqual(typeof DataFactory.namedNode, 'function')
})
it('should create an object with a termType property that contains the value "NamedNode"', function () {
var iri = 'http://example.org'
var term = DataFactory.namedNode(iri)
assert.strictEqual(term.termType, 'NamedNode')
})
it('should create an object with a value property that contains the given IRI', function () {
var iri = 'http://example.org'
var term = DataFactory.namedNode(iri)
assert.strictEqual(term.value, iri)
})
describe('.equals', function () {
it('should be a method', function () {
var iri = 'http://example.org'
var term = DataFactory.namedNode(iri)
assert.strictEqual(typeof term.equals, 'function')
})
it('should return true if termType and value are equal', function () {
var iri = 'http://example.org'
var term = DataFactory.namedNode(iri)
var mock = { termType: 'NamedNode', value: iri }
assert.strictEqual(term.equals(mock), true)
})
it('should return false if termType is not equal', function () {
var iri = 'http://example.org'
var term = DataFactory.namedNode(iri)
var mock = { termType: 'BlankNode', value: iri }
assert.strictEqual(term.equals(mock), false)
})
it('should return false if value is not equal', function () {
var iri = 'http://example.org'
var term = DataFactory.namedNode(iri)
var mock = { termType: 'NamedNode', value: iri + '1' }
assert.strictEqual(term.equals(mock), false)
})
it('should return false if value is falsy', function () {
var iri = 'http://example.org'
var term = DataFactory.namedNode(iri)
assert.strictEqual(term.equals(null), false)
})
})
})
}
module.exports = runTests