Files
pnpm/packages/default-reporter/test/reportingScope.ts
2020-09-15 01:43:01 +03:00

141 lines
2.9 KiB
TypeScript

import { Config } from '@pnpm/config'
import { toOutput$ } from '@pnpm/default-reporter'
import logger, {
createStreamParser,
} from '@pnpm/logger'
import delay from 'delay'
import { take } from 'rxjs/operators'
import test = require('tape')
const scopeLogger = logger<object>('scope')
test('does not print scope of non-recursive install in a workspace', async (t) => {
const output$ = toOutput$({
context: {
argv: ['install'],
},
streamParser: createStreamParser(),
})
scopeLogger.debug({
selected: 1,
workspacePrefix: '/home/src',
})
t.plan(1)
const subscription = output$.subscribe({
complete: () => t.end(),
error: t.end,
next: () => {
t.fail('should not log anything')
},
})
await delay(10)
t.ok('output$ has no event')
subscription.unsubscribe()
})
test('prints scope of recursive install in a workspace when not all packages are selected', (t) => {
const output$ = toOutput$({
context: {
argv: ['install'],
config: { recursive: true } as Config,
},
streamParser: createStreamParser(),
})
scopeLogger.debug({
selected: 2,
total: 10,
workspacePrefix: '/home/src',
})
t.plan(1)
output$.pipe(take(1)).subscribe({
complete: () => t.end(),
error: t.end,
next: output => {
t.equal(output, 'Scope: 2 of 10 workspace projects')
},
})
})
test('prints scope of recursive install in a workspace when all packages are selected', (t) => {
const output$ = toOutput$({
context: {
argv: ['install'],
config: { recursive: true } as Config,
},
streamParser: createStreamParser(),
})
scopeLogger.debug({
selected: 10,
total: 10,
workspacePrefix: '/home/src',
})
t.plan(1)
output$.pipe(take(1)).subscribe({
complete: () => t.end(),
error: t.end,
next: output => {
t.equal(output, 'Scope: all 10 workspace projects')
},
})
})
test('prints scope of recursive install not in a workspace when not all packages are selected', (t) => {
const output$ = toOutput$({
context: {
argv: ['install'],
config: { recursive: true } as Config,
},
streamParser: createStreamParser(),
})
scopeLogger.debug({
selected: 2,
total: 10,
})
t.plan(1)
output$.pipe(take(1)).subscribe({
complete: () => t.end(),
error: t.end,
next: output => {
t.equal(output, 'Scope: 2 of 10 projects')
},
})
})
test('prints scope of recursive install not in a workspace when all packages are selected', (t) => {
const output$ = toOutput$({
context: {
argv: ['install'],
config: { recursive: true } as Config,
},
streamParser: createStreamParser(),
})
scopeLogger.debug({
selected: 10,
total: 10,
})
t.plan(1)
output$.pipe(take(1)).subscribe({
complete: () => t.end(),
error: t.end,
next: output => {
t.equal(output, 'Scope: all 10 projects')
},
})
})