123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- // Copyright (c) Jupyter Development Team.
- // Distributed under the terms of the Modified BSD License.
- import * as nbformat from '@jupyterlab/nbformat';
- import { NBTestUtils } from '@jupyterlab/testutils';
- import { OutputModel } from '../src';
- const DEFAULT_EXECUTE: nbformat.IOutput = {
- output_type: 'execute_result',
- execution_count: 1,
- data: { 'text/plain': 'foo' },
- metadata: {
- foo: 1,
- bar: 'baz'
- }
- };
- const DEFAULT_STREAM: nbformat.IOutput = {
- name: 'stderr',
- output_type: 'stream',
- text: ['output to stderr\n']
- };
- describe('rendermime/outputmodel', () => {
- describe('OutputModel', () => {
- describe('#constructor()', () => {
- it('should create a new output model', () => {
- const value = DEFAULT_EXECUTE;
- let model = new OutputModel({ value });
- expect(model).toBeInstanceOf(OutputModel);
- model = new OutputModel({ value, trusted: true });
- expect(model).toBeInstanceOf(OutputModel);
- });
- });
- describe('#type', () => {
- it('should be the output type', () => {
- let model = new OutputModel({ value: DEFAULT_EXECUTE });
- expect(model.type).toBe(DEFAULT_EXECUTE.output_type);
- model = new OutputModel({ value: DEFAULT_STREAM });
- expect(model.type).toBe(DEFAULT_STREAM.output_type);
- });
- });
- describe('#executionCount', () => {
- it('should be the execution count of an execution result', () => {
- const model = new OutputModel({ value: DEFAULT_EXECUTE });
- expect(model.executionCount).toBe(1);
- });
- it('should be null for non-execution results', () => {
- const model = new OutputModel({ value: DEFAULT_STREAM });
- expect(model.executionCount).toBeNull();
- });
- });
- describe('#toJSON()', () => {
- it('should yield the raw value', () => {
- const model = new OutputModel({ value: DEFAULT_EXECUTE });
- expect(model.toJSON()).toEqual(DEFAULT_EXECUTE);
- });
- });
- describe('.getData()', () => {
- it('should handle all bundle types', () => {
- for (let i = 0; i < NBTestUtils.DEFAULT_OUTPUTS.length; i++) {
- const output = NBTestUtils.DEFAULT_OUTPUTS[i];
- const bundle = OutputModel.getData(output);
- expect(Object.keys(bundle).length).not.toBe(0);
- }
- });
- });
- describe('.getMetadata()', () => {
- it('should get the metadata from the bundle', () => {
- const metadata = OutputModel.getMetadata(DEFAULT_EXECUTE);
- expect(metadata['foo']).toBe(1);
- expect(metadata['bar']).toBe('baz');
- });
- it('should handle output with no metadata field', () => {
- const metadata = OutputModel.getMetadata(DEFAULT_STREAM);
- expect(Object.keys(metadata).length).toBe(0);
- });
- });
- });
- });
|