Detalhes do pacote

level-test

Level5.7kMITdepreciado9.0.0

Discontinued

Inject temporary and isolated level stores (leveldown, level-js, memdown or custom) into your tests.

level

readme (leia-me)

level-test

Inject temporary and isolated level stores (leveldown, level-js, memdown or custom) into your tests.

level badge npm Node version Test codecov JavaScript Style Guide Funding

If you are upgrading: please see UPGRADING.md.

Usage

Create a fresh db, without refering to any file system or DOM specifics, so that the same test can be used in the server or the browser! Use whatever test framework you like.

const level = require('level-test')()
const db = level({ valueEncoding: 'json' })

In node it defaults to leveldown for storage, using a unique temporary directory. In the browser it defaults to level-js.

No database name is needed since level-test generates unique random names. For disk-based systems it uses tempy and in the browser it uses uuid/v4.

const level = require('level-test')()
const db = level()

In either environment use of memdown can be forced with options.mem:

const level = require('level-test')({ mem: true })
const db = level({ valueEncoding: 'json' })

Or use any abstract-leveldown compliant store! In this case level-test assumes the storage is on disk and will thus create a unique temporary directory, unless you pass mem: true.

const rocksdb = require('rocksdb')
const level = require('level-test')(rocksdb)
const db = level({ valueEncoding: 'json' })

API

ctor = levelTest([store][, options])

Returns a function ctor that creates preconfigured levelup instances with temporary storage. The store if provided must be a function and abstract-leveldown compliant. Options:

  • mem: use memdown as store (or assume that store is memdown), default false.
  • Any other option will be merged into ctor options, the latter taking precedence.

These are equal:

const db1 = require('level-test')({ valueEncoding: 'json' })()
const db2 = require('level-test')()({ valueEncoding: 'json' })

db = ctor([options][, callback])

Returns a levelup instance via level-packager which wraps the underlying store with encoding-down. In short: the db is functionally equivalent to level. You get deferred open, encodings, Promise support, readable streams and more!

Options are passed to levelup (which in turn passes them on to the store when opened) as well as encoding-down.

Please refer to the levelup documentation for usage of the optional callback.

Contributing

Level/level-test is an OPEN Open Source Project. This means that:

Individuals making significant and valuable contributions are given commit-access to the project to contribute as they see fit. This project is more like an open wiki than a standard guarded open source project.

See the Contribution Guide for more details.

Donate

Support us with a monthly donation on Open Collective and help us continue our work. Your logo or avatar will be displayed on our 28+ GitHub repositories and npm packages. 💖

Active financial contributors

Open Collective backers Open Collective sponsors

Past financial contributors

Open Collective sponsors Open Collective backers

License

MIT

changelog (log de mudanças)

Changelog

9.0.0 - 2021-04-25

If you are upgrading: please see UPGRADING.md.

Changed

8.0.0 - 2019-10-20

Changed

Added

7.1.0 - 2019-06-28

Changed

Historical Note These upgrades enable the use of iterator.seek() across the board.

7.0.0 - 2019-05-26

Changed

Added

Removed

Fixed

6.0.0 - 2019-03-30

Changed

Added

5.0.0 - 2018-07-14

Changed

Removed

4.0.0 - 2018-07-02

Changed

Added

3.0.0 - 2018-05-10

Changed

Added

Removed

2.0.3 - 2017-04-09

Changed

Added

Removed

Historical Note At this point in time we have leveldown as both a dependency and an optional dependency.

2.0.2 - 2016-04-07

Added

2.0.1 - 2015-08-25

Changed

  • Change leveldown optionalDependency from ~1.2.2 to ^1.2.2 (@dominictarr)

2.0.0 - 2015-06-08

Changed

  • Upgrade rimraf from ~2.2.6 to ~2.3.4 (@mcollina)
  • Upgrade osenv from 0.1.0 to ~0.1.1 (@mcollina)
  • Upgrade memdown from ~0.10.2 to ~1.0.0 (@mcollina)
  • Upgrade levelup from ~0.19.0 to ~1.1.1 (@mcollina)
  • Upgrade mkdirp from ~0.5.0 to ~0.5.1 (@mcollina)
  • Upgrade leveldown optionalDependency from ~0.10.2 to ~1.2.2 (@mcollina)
  • Upgrade leveldown-hyper devDependency from ~0.10.2 to ~1.0.0 (@mcollina)

1.7.0 - 2015-02-23

Changed

Removed

1.6.6 - 2014-10-15

Changed

  • Upgrade level-js from ~1.0.8 to ~2.1.6 (@mcollina)
  • Upgrade osenv from 0.0.3 to 0.1.0 (@mcollina)
  • Upgrade memdown from ~0.6.0 to ~0.10.2 (@mcollina)
  • Upgrade levelup from ~0.18.2 to ~0.19.0 (@mcollina)
  • Upgrade xtend from ~2.1.2 to ~4.0.0 (@mcollina)
  • Upgrade tape devDependency from ~2.4.0 to ~3.0.0 (@mcollina)

1.6.5 - 2014-08-24

Added

1.6.4 - 2014-08-24

Changed

1.6.3 - 2014-05-13

Changed

  • Move leveldown to optionalDependencies and fallback to memdown (@dominictarr)

1.6.2 - 2014-03-06

Fixed

1.6.1 - 2014-01-30

Changed

Fixed

1.6.0 - 2014-01-20

Changed

Removed

1.5.2 - 2013-10-27

Changed

Fixed

1.5.1 - 2013-07-29

Changed

  • Bring back level instead of levelup and leveldown (@dominictarr)

1.5.0 - 2013-07-23

Changed

Added

1.4.2 - 2013-07-22

Changed

1.4.1 - 2013-07-18

Changed

  • Use tmpdir module instead of local tmpdir() function (@dominictarr)

1.4.0 - 2013-07-07

Added

  • Add browser compatibility when using browserify (@refset)

1.3.0 - 2013-06-15

Changed

  • Depend on levelup and leveldown instead of level (@thlorenz)

Added

  • Add support for using memdown via { mem: true } (@thlorenz)

1.2.2 - 2013-06-12

Fixed

1.2.1 - 2013-05-31

Fixed

1.2.0 - 2013-05-31

Changed

1.1.1 - 2013-05-28

Removed

Fixed

1.1.0 - 2013-05-28

Added

1.0.1 - 2013-05-28

Changed

Removed

1.0.0 - 2013-05-28

:seedling: Initial release.