mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-30 21:11:55 -04:00
141 lines
2.9 KiB
TypeScript
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')
|
|
},
|
|
})
|
|
})
|