Cosmetics to test outlines (#340)

This commit is contained in:
Daniel Hutzel
2022-04-03 12:36:11 +02:00
committed by GitHub
parent 529c431518
commit bbf1194a09
8 changed files with 9 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
const cds = require('@sap/cds/lib')
const { expect } = cds.test ('@capire/bookshop')
describe('Consuming Services locally', () => {
describe('cap/samples - Consuming Services locally', () => {
//
it('bootstrapped the database successfully', ()=>{
const { AdminService } = cds.services

View File

@@ -3,7 +3,7 @@ const { GET, POST, expect } = cds.test(__dirname+'/../bookshop')
if (cds.User.default) cds.User.default = cds.User.Privileged // hard core monkey patch
else cds.User = cds.User.Privileged // hard core monkey patch for older cds releases
describe('Custom Handlers', () => {
describe('cap/samples - Custom Handlers', () => {
it('should reject out-of-stock orders', async () => {
await POST `/browse/submitOrder ${{ book: 201, quantity: 5 }}`

View File

@@ -1,7 +1,7 @@
const cds = require('@sap/cds/lib')
const { GET, expect } = cds.test (__dirname+'/../hello')
describe('Hello world!', () => {
describe('cap/samples - Hello world!', () => {
it('should say hello with class impl', async () => {
const {data} = await GET `/say/hello(to='world')`

View File

@@ -13,7 +13,7 @@ const model = cds.compile.to.csn (`
const {Categories:Cats} = model.definitions
describe('Hierarchical Data', ()=>{
describe('cap/samples - Hierarchical Data', ()=>{
before ('bootstrap sqlite in-memory db...', async()=>{
await cds.deploy (model) .to ('sqlite::memory:')

View File

@@ -2,7 +2,7 @@ const { GET, expect, cds } = require('@sap/cds/lib').test (__dirname)
if (cds.User.default) cds.User.default = cds.User.Privileged // hard core monkey patch
else cds.User = cds.User.Privileged // hard core monkey patch for older cds releases
describe('Localized Data', () => {
describe('cap/samples - Localized Data', () => {
it('serves localized $metadata documents', async () => {
const { data } = await GET`/browse/$metadata?sap-language=de`

View File

@@ -4,7 +4,7 @@ const _model = '@capire/reviews'
if (cds.User.default) cds.User.default = cds.User.Privileged // hard core monkey patch
else cds.User = cds.User.Privileged // hard core monkey patch for older cds releases
describe('Messaging', ()=>{
describe('cap/samples - Messaging', ()=>{
it ('should bootstrap sqlite in-memory db', async()=>{
const db = await cds.deploy (_model) .to ('sqlite::memory:')

View File

@@ -2,7 +2,7 @@ const cds = require('@sap/cds/lib')
const { GET, expect, axios } = cds.test ('@capire/bookshop')
axios.defaults.auth = { username: 'alice', password: 'admin' }
describe('OData Protocol', () => {
describe('cap/samples - Bookshop APIs', () => {
it('serves $metadata documents in v4', async () => {
@@ -74,9 +74,6 @@ describe('OData Protocol', () => {
{ ID: 271, title: 'Catweazle' },
])
})
})
describe('Misc', () => {
it('serves user info', async () => {
{
@@ -89,4 +86,4 @@ describe('Misc', () => {
}
})
})
})

View File

@@ -6,7 +6,7 @@ const { resolve } = require('path')
const verbose = process.env.CDS_TEST_VERBOSE
// ||true
describe('Local NPM registry', () => {
describe('cap/samples - Local NPM registry', () => {
let registry
let axios
const cwd = resolve(__dirname, '..')