Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
173eda2d72 | ||
|
|
a486b1ee19 | ||
|
|
8eb13d1e45 | ||
|
|
defb62d232 |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"extends": [
|
"extends": [
|
||||||
"plugin:@sap/cds/recommended",
|
"eslint:recommended",
|
||||||
"eslint:recommended"
|
"plugin:@sap/cds/recommended"
|
||||||
],
|
],
|
||||||
"env": {
|
"env": {
|
||||||
"browser": true,
|
"browser": true,
|
||||||
@@ -13,13 +13,10 @@
|
|||||||
"globals": {
|
"globals": {
|
||||||
"SELECT": true,
|
"SELECT": true,
|
||||||
"INSERT": true,
|
"INSERT": true,
|
||||||
"UPSERT": true,
|
|
||||||
"UPDATE": true,
|
"UPDATE": true,
|
||||||
"DELETE": true,
|
"DELETE": true,
|
||||||
"CREATE": true,
|
"CREATE": true,
|
||||||
"DROP": true,
|
"DROP": true,
|
||||||
"CDL": true,
|
|
||||||
"CQL": true,
|
|
||||||
"cds": true
|
"cds": true
|
||||||
},
|
},
|
||||||
"rules": {
|
"rules": {
|
||||||
|
|||||||
5
.github/ISSUE_TEMPLATE/config.yml
vendored
5
.github/ISSUE_TEMPLATE/config.yml
vendored
@@ -1,5 +0,0 @@
|
|||||||
blank_issues_enabled: false
|
|
||||||
contact_links:
|
|
||||||
- name: This channel is CLOSED.
|
|
||||||
about: Use SAP community instead
|
|
||||||
url: https://answers.sap.com/tags/9f13aee1-834c-4105-8e43-ee442775e5ce
|
|
||||||
10
.github/ISSUE_TEMPLATE/question--feedback-or-bug-.md
vendored
Normal file
10
.github/ISSUE_TEMPLATE/question--feedback-or-bug-.md
vendored
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
name: This channel is CLOSED.
|
||||||
|
about: Use our community at https://answers.sap.com/tags/9f13aee1-834c-4105-8e43-ee442775e5ce
|
||||||
|
title: ''
|
||||||
|
labels: ''
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Please use our community on https://answers.sap.com/tags/9f13aee1-834c-4105-8e43-ee442775e5ce
|
||||||
3
.github/workflows/node.js.yml
vendored
3
.github/workflows/node.js.yml
vendored
@@ -26,4 +26,5 @@ jobs:
|
|||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
- run: npm i -g npm@8
|
- run: npm i -g npm@8
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
- run: npm test
|
- run: npm run test
|
||||||
|
- run: npm run test:mocha
|
||||||
|
|||||||
1
.registry/.gitignore
vendored
Normal file
1
.registry/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
*.tgz
|
||||||
81
.registry/server.js
Normal file
81
.registry/server.js
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
const { exec } = require ('child_process')
|
||||||
|
const isWin = process.platform === 'win32'
|
||||||
|
const express = require ('express')
|
||||||
|
const fs = require ('fs')
|
||||||
|
const app = express()
|
||||||
|
|
||||||
|
const { PORT=4444 } = process.env
|
||||||
|
const [,,port=PORT,scope='@capire'] = process.argv
|
||||||
|
const cwd = __dirname
|
||||||
|
|
||||||
|
// clean up on start (exit handler might not complete on Windows)
|
||||||
|
exec(isWin ? 'del *.tgz' : 'rm *.tgz', {cwd})
|
||||||
|
|
||||||
|
|
||||||
|
app.use('/-/:tarball', (req,res,next) => {
|
||||||
|
console.debug ('GET', req.params)
|
||||||
|
try {
|
||||||
|
const { tarball } = req.params
|
||||||
|
const pkgFull = tarball.substring(0, tarball.lastIndexOf('-'))
|
||||||
|
const [, pkg ] = /^\w+-(.+)/.exec(pkgFull)
|
||||||
|
fs.lstat(tarball,(err => {
|
||||||
|
if (err) console.debug (`npm pack ../${pkg}`)
|
||||||
|
if (err) exec(`npm pack ../${pkg}`,{cwd},next)
|
||||||
|
else next()
|
||||||
|
}))
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e)
|
||||||
|
res.sendStatus(500)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
app.use('/-', express.static(__dirname))
|
||||||
|
|
||||||
|
app.get('/*', (req,res)=>{
|
||||||
|
const urlRegex = /^\/(@[\w-]+)\/(.+)/
|
||||||
|
const url = decodeURIComponent(req.url)
|
||||||
|
console.debug ('GET',url)
|
||||||
|
try {
|
||||||
|
if (!urlRegex.test(url)) return res.sendStatus(404)
|
||||||
|
const [, scpe, pkg ] = urlRegex.exec(url)
|
||||||
|
const package = require (`${scpe}/${pkg}/package.json`)
|
||||||
|
const tarball = `${scpe.slice(1)}-${pkg}-${package.version}.tgz`
|
||||||
|
// https://github.com/npm/registry/blob/master/docs/responses/package-metadata.md
|
||||||
|
res.json({
|
||||||
|
"name": package.name,
|
||||||
|
"dist-tags": {
|
||||||
|
"latest": package.version
|
||||||
|
},
|
||||||
|
"versions": {
|
||||||
|
[package.version]: {
|
||||||
|
"name": package.name,
|
||||||
|
"version": package.version,
|
||||||
|
"dist": {
|
||||||
|
"tarball": `${server.url}/-/${tarball}`
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
})
|
||||||
|
} catch (e) {
|
||||||
|
if (e.code === 'MODULE_NOT_FOUND') return res.sendStatus(404)
|
||||||
|
console.error(e); throw e
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const server = app.listen(port, ()=>{
|
||||||
|
const url = server.url = `http://localhost:${server.address().port}`
|
||||||
|
console.log (`npm set ${scope}:registry=${url}`)
|
||||||
|
exec(`npm set ${scope}:registry=${url}`)
|
||||||
|
console.log (`${scope} registry listening on ${url}`)
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
const _exit = ()=>{
|
||||||
|
server.close()
|
||||||
|
exec(`npm conf rm "${scope}:registry"`, ()=> { process.exit() })
|
||||||
|
}
|
||||||
|
|
||||||
|
process.on ('SIGTERM',_exit)
|
||||||
|
process.on ('SIGHUP',_exit)
|
||||||
|
process.on ('SIGINT',_exit)
|
||||||
|
process.on ('SIGUSR2',_exit)
|
||||||
20
.vscode/launch.json
vendored
20
.vscode/launch.json
vendored
@@ -13,7 +13,7 @@
|
|||||||
"<node_internals>/**",
|
"<node_internals>/**",
|
||||||
"**/node_modules/**",
|
"**/node_modules/**",
|
||||||
"**/cds/lib/lazy.js",
|
"**/cds/lib/lazy.js",
|
||||||
"**/cds/lib/req/cds-context.js",
|
"**/cds/lib/req/cls.js",
|
||||||
"**/odata-v4/okra/**"
|
"**/odata-v4/okra/**"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -26,24 +26,10 @@
|
|||||||
"<node_internals>/**",
|
"<node_internals>/**",
|
||||||
"**/node_modules/**",
|
"**/node_modules/**",
|
||||||
"**/cds/lib/lazy.js",
|
"**/cds/lib/lazy.js",
|
||||||
"**/cds/lib/req/cds-context.js",
|
"**/cds/lib/req/cls.js",
|
||||||
"**/odata-v4/okra/**"
|
"**/odata-v4/okra/**"
|
||||||
]
|
]
|
||||||
},
|
}
|
||||||
{
|
|
||||||
"name": "Debug Mocha Tests",
|
|
||||||
"type": "node",
|
|
||||||
"request": "attach",
|
|
||||||
"port": 9229,
|
|
||||||
"continueOnAttach": true,
|
|
||||||
"skipFiles": [
|
|
||||||
"<node_internals>/**",
|
|
||||||
"**/node_modules/**",
|
|
||||||
"**/cds/lib/lazy.js",
|
|
||||||
"**/cds/lib/req/cds-context.js",
|
|
||||||
"**/odata-v4/okra/**",
|
|
||||||
]
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
"inputs": [
|
"inputs": [
|
||||||
{
|
{
|
||||||
|
|||||||
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
@@ -10,13 +10,12 @@
|
|||||||
"<node_internals>/**",
|
"<node_internals>/**",
|
||||||
"**/node_modules/**",
|
"**/node_modules/**",
|
||||||
"**/cds/lib/lazy.js",
|
"**/cds/lib/lazy.js",
|
||||||
"**/cds/lib/req/cds-context.js",
|
"**/cds/lib/req/cls.js",
|
||||||
"**/odata-v4/okra/**"
|
"**/odata-v4/okra/**"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"mochaExplorer.debuggerConfig": "Debug Mocha Tests",
|
|
||||||
"mochaExplorer.parallel": true,
|
"mochaExplorer.parallel": true,
|
||||||
"eslint.probe": [
|
"eslint.validate": [
|
||||||
"cds",
|
"cds",
|
||||||
"csn",
|
"csn",
|
||||||
"csv",
|
"csv",
|
||||||
|
|||||||
@@ -2,5 +2,5 @@ ID;title;descr;author_ID;stock;price;currency_code;genre_ID
|
|||||||
201;Wuthering Heights;"Wuthering Heights, Emily Brontë's only novel, was published in 1847 under the pseudonym ""Ellis Bell"". It was written between October 1845 and June 1846. Wuthering Heights and Anne Brontë's Agnes Grey were accepted by publisher Thomas Newby before the success of their sister Charlotte's novel Jane Eyre. After Emily's death, Charlotte edited the manuscript of Wuthering Heights and arranged for the edited version to be published as a posthumous second edition in 1850.";101;12;11.11;GBP;11
|
201;Wuthering Heights;"Wuthering Heights, Emily Brontë's only novel, was published in 1847 under the pseudonym ""Ellis Bell"". It was written between October 1845 and June 1846. Wuthering Heights and Anne Brontë's Agnes Grey were accepted by publisher Thomas Newby before the success of their sister Charlotte's novel Jane Eyre. After Emily's death, Charlotte edited the manuscript of Wuthering Heights and arranged for the edited version to be published as a posthumous second edition in 1850.";101;12;11.11;GBP;11
|
||||||
207;Jane Eyre;"Jane Eyre /ɛər/ (originally published as Jane Eyre: An Autobiography) is a novel by English writer Charlotte Brontë, published under the pen name ""Currer Bell"", on 16 October 1847, by Smith, Elder & Co. of London. The first American edition was published the following year by Harper & Brothers of New York. Primarily a bildungsroman, Jane Eyre follows the experiences of its eponymous heroine, including her growth to adulthood and her love for Mr. Rochester, the brooding master of Thornfield Hall. The novel revolutionised prose fiction in that the focus on Jane's moral and spiritual development is told through an intimate, first-person narrative, where actions and events are coloured by a psychological intensity. The book contains elements of social criticism, with a strong sense of Christian morality at its core and is considered by many to be ahead of its time because of Jane's individualistic character and how the novel approaches the topics of class, sexuality, religion and feminism.";107;11;12.34;GBP;11
|
207;Jane Eyre;"Jane Eyre /ɛər/ (originally published as Jane Eyre: An Autobiography) is a novel by English writer Charlotte Brontë, published under the pen name ""Currer Bell"", on 16 October 1847, by Smith, Elder & Co. of London. The first American edition was published the following year by Harper & Brothers of New York. Primarily a bildungsroman, Jane Eyre follows the experiences of its eponymous heroine, including her growth to adulthood and her love for Mr. Rochester, the brooding master of Thornfield Hall. The novel revolutionised prose fiction in that the focus on Jane's moral and spiritual development is told through an intimate, first-person narrative, where actions and events are coloured by a psychological intensity. The book contains elements of social criticism, with a strong sense of Christian morality at its core and is considered by many to be ahead of its time because of Jane's individualistic character and how the novel approaches the topics of class, sexuality, religion and feminism.";107;11;12.34;GBP;11
|
||||||
251;The Raven;"""The Raven"" is a narrative poem by American writer Edgar Allan Poe. First published in January 1845, the poem is often noted for its musicality, stylized language, and supernatural atmosphere. It tells of a talking raven's mysterious visit to a distraught lover, tracing the man's slow fall into madness. The lover, often identified as being a student, is lamenting the loss of his love, Lenore. Sitting on a bust of Pallas, the raven seems to further distress the protagonist with its constant repetition of the word ""Nevermore"". The poem makes use of folk, mythological, religious, and classical references.";150;333;13.13;USD;16
|
251;The Raven;"""The Raven"" is a narrative poem by American writer Edgar Allan Poe. First published in January 1845, the poem is often noted for its musicality, stylized language, and supernatural atmosphere. It tells of a talking raven's mysterious visit to a distraught lover, tracing the man's slow fall into madness. The lover, often identified as being a student, is lamenting the loss of his love, Lenore. Sitting on a bust of Pallas, the raven seems to further distress the protagonist with its constant repetition of the word ""Nevermore"". The poem makes use of folk, mythological, religious, and classical references.";150;333;13.13;USD;16
|
||||||
252;Eleonora;"""Eleonora"" is a short story by Edgar Allan Poe, first published in 1842 in Philadelphia in the literary annual The Gift. It is often regarded as somewhat autobiographical and has a relatively ""happy"" ending.";150;555;14;USD;15
|
252;Eleonora;"""Eleonora"" is a short story by Edgar Allan Poe, first published in 1842 in Philadelphia in the literary annual The Gift. It is often regarded as somewhat autobiographical and has a relatively ""happy"" ending.";150;555;14;USD;16
|
||||||
271;Catweazle;Catweazle is a British fantasy television series, starring Geoffrey Bayldon in the title role, and created by Richard Carpenter for London Weekend Television. The first series, produced and directed by Quentin Lawrence, was screened in the UK on ITV in 1970. The second series, directed by David Reid and David Lane, was shown in 1971. Each series had thirteen episodes, most but not all written by Carpenter, who also published two books based on the scripts.;170;22;150;JPY;13
|
271;Catweazle;Catweazle is a British fantasy television series, starring Geoffrey Bayldon in the title role, and created by Richard Carpenter for London Weekend Television. The first series, produced and directed by Quentin Lawrence, was screened in the UK on ITV in 1970. The second series, directed by David Reid and David Lane, was shown in 1971. Each series had thirteen episodes, most but not all written by Carpenter, who also published two books based on the scripts.;170;22;150;JPY;13
|
||||||
|
@@ -4,21 +4,21 @@
|
|||||||
* currencies, if not obtained through @capire/common.
|
* currencies, if not obtained through @capire/common.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = async (tx)=>{
|
module.exports = async (db)=>{
|
||||||
|
|
||||||
const has_common = tx.model.definitions['sap.common.Currencies']?.elements.numcode
|
const has_common = db.model.definitions['sap.common.Currencies'].elements.numcode
|
||||||
if (has_common) return
|
if (has_common) return
|
||||||
|
|
||||||
const already_filled = await tx.exists('sap.common.Currencies',{code:'EUR'})
|
const already_filled = await db.exists('sap.common.Currencies',{code:'EUR'})
|
||||||
if (already_filled) return
|
if (already_filled) return
|
||||||
|
|
||||||
await tx.run (INSERT.into ('sap.common.Currencies') .columns (
|
await INSERT.into ('sap.common.Currencies') .columns (
|
||||||
[ 'code', 'symbol', 'name' ]
|
'code','symbol','name'
|
||||||
) .rows (
|
) .rows (
|
||||||
[ 'EUR', '€', 'Euro' ],
|
[ 'EUR','€','Euro' ],
|
||||||
[ 'USD', '$', 'US Dollar' ],
|
[ 'USD','$','US Dollar' ],
|
||||||
[ 'GBP', '£', 'British Pound' ],
|
[ 'GBP','£','British Pound' ],
|
||||||
[ 'ILS', '₪', 'Shekel' ],
|
[ 'ILS','₪','Shekel' ],
|
||||||
[ 'JPY', '¥', 'Yen' ],
|
[ 'JPY','¥','Yen' ],
|
||||||
))
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,11 +12,7 @@ using { sap.capire.bookshop.Books } from '@capire/bookshop';
|
|||||||
using { ReviewsService.Reviews } from '@capire/reviews';
|
using { ReviewsService.Reviews } from '@capire/reviews';
|
||||||
extend Books with {
|
extend Books with {
|
||||||
reviews : Composition of many Reviews on reviews.subject = $self.ID;
|
reviews : Composition of many Reviews on reviews.subject = $self.ID;
|
||||||
|
|
||||||
@Common.Label : '{i18n>Rating}'
|
|
||||||
rating : Decimal;
|
rating : Decimal;
|
||||||
|
|
||||||
@Common.Label : '{i18n>NumberOfReviews}'
|
|
||||||
numberOfReviews : Integer;
|
numberOfReviews : Integer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -6,33 +6,16 @@ Author = Author
|
|||||||
AuthorID = Author ID
|
AuthorID = Author ID
|
||||||
Stock = Stock
|
Stock = Stock
|
||||||
Name = Name
|
Name = Name
|
||||||
Description = Description
|
|
||||||
Image = Image
|
|
||||||
AuthorName = Author's Name
|
AuthorName = Author's Name
|
||||||
DateOfBirth = Date of Birth
|
DateOfBirth = Date of Birth
|
||||||
DateOfDeath = Date of Death
|
DateOfDeath = Date of Death
|
||||||
PlaceOfBirth = Place of Birth
|
PlaceOfBirth = Place of Birth
|
||||||
PlaceOfDeath = Place of Death
|
PlaceOfDeath = Place of Death
|
||||||
Age = Age
|
Age = Age
|
||||||
Lifetime = Lifetime
|
|
||||||
Authors = Authors
|
Authors = Authors
|
||||||
|
|
||||||
Order = Order
|
Order = Order
|
||||||
Orders = Orders
|
Orders = Orders
|
||||||
OrderNo = Order Number
|
|
||||||
OrderItems = Order Items
|
|
||||||
Customer = Customer
|
|
||||||
Product = Product
|
|
||||||
ProductID = Product ID
|
|
||||||
ProductTitle = Product Title
|
|
||||||
UnitPrice = Unit Price
|
|
||||||
Quantity = Quantity
|
|
||||||
|
|
||||||
Price = Price
|
Price = Price
|
||||||
Currency = Currency
|
|
||||||
Date = Date
|
|
||||||
Rating = Rating
|
|
||||||
NumberOfReviews = Number of Reviews
|
|
||||||
|
|
||||||
Genre = Genre
|
Genre = Genre
|
||||||
Genres = Genres
|
Genres = Genres
|
||||||
|
|||||||
@@ -43,10 +43,5 @@ extend sap.capire.bookshop.Authors with {
|
|||||||
virtual lifetime : String;
|
virtual lifetime : String;
|
||||||
}
|
}
|
||||||
|
|
||||||
annotate AdminService.Authors with {
|
|
||||||
age @Common.Label : '{i18n>Age}';
|
|
||||||
lifetime @Common.Label : '{i18n>Lifetime}'
|
|
||||||
}
|
|
||||||
|
|
||||||
// Workaround for Fiori popup for asking user to enter a new UUID on Create
|
// Workaround for Fiori popup for asking user to enter a new UUID on Create
|
||||||
annotate AdminService.Authors with { ID @Core.Computed; }
|
annotate AdminService.Authors with { ID @Core.Computed; }
|
||||||
|
|||||||
@@ -62,11 +62,6 @@ annotate AdminService.Books.texts with @(
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
annotate AdminService.Books.texts with {
|
|
||||||
ID @UI.Hidden;
|
|
||||||
ID_texts @UI.Hidden;
|
|
||||||
};
|
|
||||||
|
|
||||||
// Add Value Help for Locales
|
// Add Value Help for Locales
|
||||||
annotate AdminService.Books.texts {
|
annotate AdminService.Books.texts {
|
||||||
locale @(
|
locale @(
|
||||||
|
|||||||
@@ -1,15 +1,5 @@
|
|||||||
using CatalogService from '@capire/bookstore';
|
using CatalogService from '@capire/bookstore';
|
||||||
|
|
||||||
using from '@sap/cds-pdf-export';
|
|
||||||
|
|
||||||
annotate CatalogService with @(
|
|
||||||
Capabilities: { SupportedFormats : [ 'application/pdf' ] },
|
|
||||||
PDF.Features: {
|
|
||||||
DocumentDescriptionReference : '/-pdf/',
|
|
||||||
DocumentDescriptionCollection : 'createDocumentDescription'
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// Books Object Page
|
// Books Object Page
|
||||||
@@ -62,6 +52,9 @@ annotate CatalogService.Books with @(UI : {
|
|||||||
},
|
},
|
||||||
{Value : genre.name},
|
{Value : genre.name},
|
||||||
{Value : price},
|
{Value : price},
|
||||||
{Value : currency.symbol},
|
{
|
||||||
|
Value : currency.symbol,
|
||||||
|
Label : ' '
|
||||||
|
},
|
||||||
]
|
]
|
||||||
}, );
|
}, );
|
||||||
|
|||||||
@@ -4,7 +4,6 @@
|
|||||||
|
|
||||||
using { sap.capire.bookshop as my } from '@capire/bookstore';
|
using { sap.capire.bookshop as my } from '@capire/bookstore';
|
||||||
using { sap.common } from '@capire/common';
|
using { sap.common } from '@capire/common';
|
||||||
using { sap.common.Currencies } from '@sap/cds/common';
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
@@ -26,7 +25,7 @@ annotate my.Books with @(
|
|||||||
{ Value: genre.name },
|
{ Value: genre.name },
|
||||||
{ Value: stock },
|
{ Value: stock },
|
||||||
{ Value: price },
|
{ Value: price },
|
||||||
{ Value: currency.symbol },
|
{ Value: currency.symbol, Label: ' ' },
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
) {
|
) {
|
||||||
@@ -38,10 +37,6 @@ annotate my.Books with @(
|
|||||||
author @ValueList.entity : 'Authors';
|
author @ValueList.entity : 'Authors';
|
||||||
};
|
};
|
||||||
|
|
||||||
annotate Currencies with {
|
|
||||||
symbol @Common.Label : '{i18n>Currency}';
|
|
||||||
}
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// Books Details
|
// Books Details
|
||||||
@@ -65,8 +60,7 @@ annotate my.Books with {
|
|||||||
author @title: '{i18n>Author}' @Common: { Text: author.name, TextArrangement: #TextOnly };
|
author @title: '{i18n>Author}' @Common: { Text: author.name, TextArrangement: #TextOnly };
|
||||||
price @title: '{i18n>Price}' @Measures.ISOCurrency : currency_code;
|
price @title: '{i18n>Price}' @Measures.ISOCurrency : currency_code;
|
||||||
stock @title: '{i18n>Stock}';
|
stock @title: '{i18n>Stock}';
|
||||||
descr @title: '{i18n>Description}' @UI.MultiLineText;
|
descr @UI.MultiLineText;
|
||||||
image @title: '{i18n>Image}';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
@@ -87,10 +81,6 @@ annotate my.Genres with @(
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
annotate my.Genres with {
|
|
||||||
ID @Common.Text : name @Common.TextArrangement : #TextOnly;
|
|
||||||
}
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// Genre Details
|
// Genre Details
|
||||||
|
|||||||
@@ -43,16 +43,6 @@
|
|||||||
"[production]": {
|
"[production]": {
|
||||||
"model": "db/hana"
|
"model": "db/hana"
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"pdf": {
|
|
||||||
"kind": "btp-adobe-forms",
|
|
||||||
"vcap": {
|
|
||||||
"label": "adsrestapi"
|
|
||||||
},
|
|
||||||
"[pdfme]": {
|
|
||||||
"kind": "export-pdf",
|
|
||||||
"impl": "./pdfme.js"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"hana": {
|
"hana": {
|
||||||
|
|||||||
@@ -1,38 +0,0 @@
|
|||||||
const { generate, BLANK_PDF } = require("@pdfme/generator");
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generate PDF with @pdfme/generator library
|
|
||||||
*/
|
|
||||||
module.exports = async (data, headers) => {
|
|
||||||
|
|
||||||
let inputs = data
|
|
||||||
|
|
||||||
let x = 0, y = 0;
|
|
||||||
const width = 30;
|
|
||||||
const height = 5;
|
|
||||||
|
|
||||||
const tableSchema = {}
|
|
||||||
for (const entry of headers) {
|
|
||||||
x += width;
|
|
||||||
tableSchema[entry.Name] = {
|
|
||||||
type: 'text',
|
|
||||||
position: { x, y: 10 },
|
|
||||||
width,
|
|
||||||
height
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for (const row of data) {
|
|
||||||
for (const [key, value] of Object.entries(row)) {
|
|
||||||
if (typeof value !== 'string') row[key] = ''+value // stringify
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const template = {
|
|
||||||
basePdf: BLANK_PDF,
|
|
||||||
schemas: [tableSchema]
|
|
||||||
};
|
|
||||||
const pdf = await generate({ template, inputs });
|
|
||||||
|
|
||||||
return pdf;
|
|
||||||
};
|
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
// install OData v2 adapter
|
|
||||||
const cds = require("@sap/cds")
|
const cds = require("@sap/cds")
|
||||||
|
|
||||||
|
// install OData v2 adapter
|
||||||
const proxy = require('@sap/cds-odata-v2-adapter-proxy')
|
const proxy = require('@sap/cds-odata-v2-adapter-proxy')
|
||||||
const opts = global.it ? { target:'auto' } : {} // for tests, set 'auto' to detect port dynamically
|
const proxyOpts = global.it ? { target:'auto' } : {} // for tests, set 'auto' to detect port dynamically
|
||||||
cds.on('bootstrap', app => app.use(proxy(opts))) // install proxy
|
cds.on('bootstrap', app => app.use(proxy(proxyOpts)))
|
||||||
cds.log('cov2ap','silent') // suppress anoying log outpout, e.g. for `npm run mocha -- --reporter nyan`
|
|
||||||
|
|
||||||
module.exports = require('@capire/bookstore/server.js')
|
module.exports = require('@capire/bookstore/server.js')
|
||||||
@@ -1,7 +1,3 @@
|
|||||||
module.exports = class say {
|
module.exports = class say {
|
||||||
hello(req) {
|
hello(req) { return `Hello ${req.data.to}!` }
|
||||||
let {to} = req.data
|
|
||||||
if (to === 'me') to = require('os').userInfo().username
|
|
||||||
return `Hello ${to}!`
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,76 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<title> cds.log </title>
|
|
||||||
<link rel="stylesheet" href="https://unpkg.com/primitive-ui/dist/css/main.css">
|
|
||||||
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
|
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vue@3/dist/vue.global.prod.js"></script>
|
|
||||||
<style>
|
|
||||||
select { border-color: transparent; padding: 4px 12px; margin: 0px; }
|
|
||||||
button { padding: 2px 11px; margin: 0px 4px; font: 90% italic; }
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body class="small-container" , style="margin-top: 70px;">
|
|
||||||
<div id='app'>
|
|
||||||
<h1> Log Levels </h1>
|
|
||||||
<input type="text" placeholder="Search by ID or Log Level..." @input="fetch">
|
|
||||||
<table id='loggers'>
|
|
||||||
<thead>
|
|
||||||
<th> Module ID </th>
|
|
||||||
<th> Log Level </th>
|
|
||||||
</thead>
|
|
||||||
<tr v-for="each in list">
|
|
||||||
<td>{{ each.id }}</td>
|
|
||||||
<td><select v-bind:id="each.id" v-model="each.level" @change="set">
|
|
||||||
<option>SILENT</option>
|
|
||||||
<option>ERROR</option>
|
|
||||||
<option>WARN</option>
|
|
||||||
<option>INFO</option>
|
|
||||||
<option>DEBUG</option>
|
|
||||||
<option>TRACE</option>
|
|
||||||
</select>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
<h4>Log Format:</h4>
|
|
||||||
[ <button class="round-button" :class={'muted-button':!format.timestamp} @click="toggle_format" id="timestamp">Timestamp </button>
|
|
||||||
| <button class="round-button" :class={'muted-button':!format.level} @click="toggle_format" id="level">Log Level </button>
|
|
||||||
| <button class="round-button" :class={'muted-button':!format.tenant} @click="toggle_format" id="tenant">Tenant </button>
|
|
||||||
| <button class="round-button" :class={'muted-button':!format.reqid} @click="toggle_format" id="reqid">Request ID </button>
|
|
||||||
| <button class="round-button" :class={'muted-button':!format.id} @click="toggle_format" id="module">Logger ID </button>
|
|
||||||
] - <i>log message ...</i>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
axios.defaults.headers['Content-Type'] = 'application/json'
|
|
||||||
axios.defaults.baseURL = '/log'
|
|
||||||
const loggers = Vue.createApp({ el: '#app',
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
format: { timestamp:false, level:false, tenant:false, reqid:false, id:true, },
|
|
||||||
list: [],
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
async fetch (eve) {
|
|
||||||
this.list = (await axios.get (`/Loggers${
|
|
||||||
eve && eve.target.value ? `?$search=${eve.target.value}` : ''
|
|
||||||
}`)).data
|
|
||||||
},
|
|
||||||
async set (eve) {
|
|
||||||
const { id, value:level } = eve.target
|
|
||||||
await axios.put (`/Logger/${id}`, {id,level})
|
|
||||||
},
|
|
||||||
async toggle_format (eve) {
|
|
||||||
this.format[eve.target.id] = !this.format[eve.target.id]
|
|
||||||
await axios.post (`/format`, this.format)
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}).mount('#app')
|
|
||||||
loggers.fetch() // initially fill list of loggers
|
|
||||||
</script>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "@capire/loggers",
|
|
||||||
"version": "1.0.0",
|
|
||||||
"description": "Simple sample on how to dynamically set cds.log levels and formats.",
|
|
||||||
"files": [
|
|
||||||
"app",
|
|
||||||
"srv"
|
|
||||||
],
|
|
||||||
"dependencies": {
|
|
||||||
"@sap/cds": ">=5.9",
|
|
||||||
"express": "^4.17.1"
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"start": "cds run",
|
|
||||||
"watch": "cds watch"
|
|
||||||
},
|
|
||||||
"cds": {
|
|
||||||
"requires": {
|
|
||||||
"db": "sql"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
# Dynamically Set `cds.log` Levels and Formats
|
|
||||||
|
|
||||||
### Run
|
|
||||||
|
|
||||||
```sh
|
|
||||||
cds watch
|
|
||||||
```
|
|
||||||
|
|
||||||
### Test
|
|
||||||
|
|
||||||
Either using the UI through http://localhost:4004/loggers.html, or try the requests in `test/requests.http`
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
service Sue {
|
|
||||||
entity Dummy { key ID: UUID; title: String; }
|
|
||||||
}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
@rest service LogService {
|
|
||||||
|
|
||||||
@readonly entity Loggers : Logger {};
|
|
||||||
entity Logger {
|
|
||||||
key id : String;
|
|
||||||
level : String;
|
|
||||||
}
|
|
||||||
|
|
||||||
action format (
|
|
||||||
timestamp : Boolean,
|
|
||||||
level : Boolean,
|
|
||||||
tenant : Boolean,
|
|
||||||
reqid : Boolean,
|
|
||||||
id : Boolean,
|
|
||||||
);
|
|
||||||
|
|
||||||
action debug (logger : String) returns Logger;
|
|
||||||
action reset (logger : String) returns Logger;
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
const cds = require ('@sap/cds/lib')
|
|
||||||
const LOG = cds.log('cds.log')
|
|
||||||
|
|
||||||
module.exports = class LogService extends cds.Service {
|
|
||||||
init(){
|
|
||||||
|
|
||||||
this.on('GET','Loggers', (req)=>{
|
|
||||||
let loggers = Object.values(cds.log.loggers).map (_logger)
|
|
||||||
let {$search} = req._.req.query
|
|
||||||
if ($search) {
|
|
||||||
const re = RegExp($search,'i')
|
|
||||||
loggers = loggers.filter (l => re.test(l.id) || re.test(l.level))
|
|
||||||
}
|
|
||||||
return loggers.sort ((a,b) => a.id < b.id ? -1 : 1)
|
|
||||||
})
|
|
||||||
|
|
||||||
this.on('PUT','Logger', (req)=>{
|
|
||||||
const {id} = req.params[0] || req.data
|
|
||||||
if (!id) return req.reject('No logger id specified in request')
|
|
||||||
return _logger (cds.log (id, req.data))
|
|
||||||
})
|
|
||||||
|
|
||||||
this.on('debug', (req)=>{
|
|
||||||
const {logger:id} = req.params[0] || req.data
|
|
||||||
if (!id) return req.reject('No logger id specified in request')
|
|
||||||
return _logger (cds.log (id, {level:'debug'}))
|
|
||||||
})
|
|
||||||
|
|
||||||
this.on('reset', (req)=>{
|
|
||||||
const {logger:id} = req.params[0] || req.data
|
|
||||||
if (!id) return req.reject('No logger id specified in request')
|
|
||||||
return _logger (cds.log (id, {level:'info'}))
|
|
||||||
})
|
|
||||||
|
|
||||||
this.on('format', (req)=>{
|
|
||||||
const $ = req.data; LOG.info('format:',$)
|
|
||||||
// Set format for new loggers constructed subsequently
|
|
||||||
cds.log.format = (id, level, ...args) => {
|
|
||||||
const fmt = []
|
|
||||||
if ($.timestamp) fmt.push ('|', (new Date).toISOString())
|
|
||||||
if ($.level) fmt.push ('|', _levels[level].padEnd(5))
|
|
||||||
if ($.tenant) fmt.push ('|', cds.context && cds.context.tenant)
|
|
||||||
if ($.reqid) fmt.push ('|', cds.context && cds.context.id)
|
|
||||||
if ($.id) fmt.push ('|', id)
|
|
||||||
fmt[0] = '[', fmt.push ('] -', ...args)
|
|
||||||
return fmt
|
|
||||||
}
|
|
||||||
// Apply this format to all existing loggers
|
|
||||||
Object.values(cds.log.loggers).forEach (l => l.setFormat (cds.log.format))
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
const _logger = ({id,level}) => ({id, level:_levels[level] })
|
|
||||||
const _levels = [ 'SILENT', 'ERROR', 'WARN', 'INFO', 'DEBUG', 'TRACE' ]
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
http://localhost:4004/loggers.html
|
|
||||||
@body: = Content-Type: application/json\n\n
|
|
||||||
|
|
||||||
###
|
|
||||||
GET http://localhost:4004/log/Loggers
|
|
||||||
|
|
||||||
###
|
|
||||||
PUT http://localhost:4004/log/Logger/sqlite
|
|
||||||
{{body:}} { "level": "debug" }
|
|
||||||
|
|
||||||
###
|
|
||||||
POST http://localhost:4004/log/debug(logger='sqlite')
|
|
||||||
|
|
||||||
###
|
|
||||||
POST http://localhost:4004/log/reset(logger='sqlite')
|
|
||||||
|
|
||||||
### Dummy request to see sqlite debug output
|
|
||||||
GET http://localhost:4004/sue/Dummy
|
|
||||||
@@ -40,7 +40,7 @@ module.exports = srv => {
|
|||||||
req.reject(404, 'Media not found for the ID')
|
req.reject(404, 'Media not found for the ID')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
const decodedMedia = Buffer.from(
|
const decodedMedia = new Buffer(
|
||||||
mediaObj.media.split(';base64,').pop(),
|
mediaObj.media.split(';base64,').pop(),
|
||||||
'base64'
|
'base64'
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -18,22 +18,22 @@ annotate OrdersService.Orders with @(
|
|||||||
UI: {
|
UI: {
|
||||||
SelectionFields: [ createdBy ],
|
SelectionFields: [ createdBy ],
|
||||||
LineItem: [
|
LineItem: [
|
||||||
{Value: OrderNo, Label:'{i18n>OrderNo}'},
|
{Value: OrderNo, Label:'OrderNo'},
|
||||||
{Value: buyer, Label:'{i18n>Customer}'},
|
{Value: buyer, Label:'Customer'},
|
||||||
{Value: currency.symbol, Label:'{i18n>Currency}'},
|
{Value: currency.symbol, Label:'Currency'},
|
||||||
{Value: createdAt, Label:'{i18n>Date}'},
|
{Value: createdAt, Label:'Date'},
|
||||||
],
|
],
|
||||||
HeaderInfo: {
|
HeaderInfo: {
|
||||||
TypeName: '{i18n>Order}', TypeNamePlural: '{i18n>Orders}',
|
TypeName: 'Order', TypeNamePlural: 'Orders',
|
||||||
Title: {
|
Title: {
|
||||||
Label: '{i18n>OrderNo}', //A label is possible but it is not considered on the ObjectPage yet
|
Label: 'Order number ', //A label is possible but it is not considered on the ObjectPage yet
|
||||||
Value: OrderNo
|
Value: OrderNo
|
||||||
},
|
},
|
||||||
Description: {Value: createdBy}
|
Description: {Value: createdBy}
|
||||||
},
|
},
|
||||||
Identification: [ //Is the main field group
|
Identification: [ //Is the main field group
|
||||||
{Value: createdBy, Label:'{i18n>Customer}'},
|
{Value: createdBy, Label:'Customer'},
|
||||||
{Value: createdAt, Label:'{i18n>Date}'},
|
{Value: createdAt, Label:'Date'},
|
||||||
{Value: OrderNo },
|
{Value: OrderNo },
|
||||||
],
|
],
|
||||||
HeaderFacets: [
|
HeaderFacets: [
|
||||||
@@ -46,7 +46,7 @@ annotate OrdersService.Orders with @(
|
|||||||
],
|
],
|
||||||
FieldGroup#Details: {
|
FieldGroup#Details: {
|
||||||
Data: [
|
Data: [
|
||||||
{Value: currency.code, Label:'{i18n>Currency}'}
|
{Value: currency.code, Label:'Currency'}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
FieldGroup#Created: {
|
FieldGroup#Created: {
|
||||||
@@ -65,7 +65,6 @@ annotate OrdersService.Orders with @(
|
|||||||
) {
|
) {
|
||||||
createdAt @UI.HiddenFilter:false;
|
createdAt @UI.HiddenFilter:false;
|
||||||
createdBy @UI.HiddenFilter:false;
|
createdBy @UI.HiddenFilter:false;
|
||||||
ID @UI.Hidden;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -73,15 +72,15 @@ annotate OrdersService.Orders with @(
|
|||||||
annotate OrdersService.Orders.Items with @(
|
annotate OrdersService.Orders.Items with @(
|
||||||
UI: {
|
UI: {
|
||||||
LineItem: [
|
LineItem: [
|
||||||
{Value: product_ID, Label:'{i18n>ProductID}'},
|
{Value: product_ID, Label:'Product ID'},
|
||||||
{Value: title, Label:'{i18n>ProductTitle}'},
|
{Value: title, Label:'Product Title'},
|
||||||
{Value: price, Label:'{i18n>UnitPrice}'},
|
{Value: price, Label:'Unit Price'},
|
||||||
{Value: quantity, Label:'{i18n>Quantity}'},
|
{Value: quantity, Label:'Quantity'},
|
||||||
],
|
],
|
||||||
Identification: [ //Is the main field group
|
Identification: [ //Is the main field group
|
||||||
{Value: quantity, Label:'{i18n>Quantity}'},
|
{Value: quantity, Label:'Quantity'},
|
||||||
{Value: title, Label:'{i18n>Product}'},
|
{Value: title, Label:'Product'},
|
||||||
{Value: price, Label:'{i18n>UnitPrice}'},
|
{Value: price, Label:'Unit Price'},
|
||||||
],
|
],
|
||||||
Facets: [
|
Facets: [
|
||||||
{$Type: 'UI.ReferenceFacet', Label: '{i18n>OrderItems}', Target: '@UI.Identification'},
|
{$Type: 'UI.ReferenceFacet', Label: '{i18n>OrderItems}', Target: '@UI.Identification'},
|
||||||
@@ -91,7 +90,4 @@ annotate OrdersService.Orders.Items with @(
|
|||||||
quantity @(
|
quantity @(
|
||||||
Common.FieldControl: #Mandatory
|
Common.FieldControl: #Mandatory
|
||||||
);
|
);
|
||||||
ID @UI.Hidden;
|
|
||||||
up_ @UI.Hidden;
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
3488
package-lock.json
generated
3488
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
13
package.json
13
package.json
@@ -16,12 +16,10 @@
|
|||||||
"./hello",
|
"./hello",
|
||||||
"./media",
|
"./media",
|
||||||
"./orders",
|
"./orders",
|
||||||
"./loggers",
|
|
||||||
"./reviews"
|
"./reviews"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@sap/eslint-plugin-cds": "^2.6.1",
|
"axios": "^0",
|
||||||
"axios": "^1",
|
|
||||||
"chai": "^4.3.4",
|
"chai": "^4.3.4",
|
||||||
"chai-as-promised": "^7.1.1",
|
"chai-as-promised": "^7.1.1",
|
||||||
"chai-subset": "^1.6.0",
|
"chai-subset": "^1.6.0",
|
||||||
@@ -30,14 +28,16 @@
|
|||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"cleanup": "rm -rf node_modules && rm -rf */node_modules && rm -rf */*/node_modules",
|
"cleanup": "rm -rf node_modules && rm -rf */node_modules && rm -rf */*/node_modules",
|
||||||
|
"registry": "node .registry/server.js",
|
||||||
"bookshop": "cds watch bookshop",
|
"bookshop": "cds watch bookshop",
|
||||||
"fiori": "cds watch fiori",
|
"fiori": "cds watch fiori",
|
||||||
"hello": "cds watch hello",
|
"hello": "cds watch hello",
|
||||||
"media": "cds watch media",
|
"media": "cds watch media",
|
||||||
"mocha": "CDS_TEST_SILENT=y npx mocha",
|
"mocha": "npx mocha || echo",
|
||||||
"jest": "npx jest --silent",
|
"jest": "npx jest",
|
||||||
"start": "cds watch fiori",
|
"start": "cds watch fiori",
|
||||||
"test": "npm run jest -- --silent",
|
"test": "npm run jest -- --silent",
|
||||||
|
"test:mocha": "npx mocha --parallel --recursive --timeout 20000",
|
||||||
"test:hello": "cd hello && npm test"
|
"test:hello": "cd hello && npm test"
|
||||||
},
|
},
|
||||||
"jest": {
|
"jest": {
|
||||||
@@ -48,8 +48,7 @@
|
|||||||
},
|
},
|
||||||
"mocha": {
|
"mocha": {
|
||||||
"recursive": true,
|
"recursive": true,
|
||||||
"parallel": true,
|
"parallel": true
|
||||||
"timeout": 6666
|
|
||||||
},
|
},
|
||||||
"license": "SAP SAMPLE CODE LICENSE",
|
"license": "SAP SAMPLE CODE LICENSE",
|
||||||
"private": true
|
"private": true
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# Overview of Samples
|
# Overview of Samples
|
||||||
|
|
||||||
The following list gives an overview of the samples provided in subdirectories.
|
The following list gives an overview of the samples provided in subdirectories.
|
||||||
Each sub directory essentially is an individual npm package arranged in an [all-in-one monorepo](#all-in-one-monorepo) umbrella setup.
|
Each sub directory essentially is an individual npm package arranged in an [all-in-one monorepo](all-in-one-monorepo) umbrella setup.
|
||||||
|
|
||||||
|
|
||||||
## [@capire/hello-world](hello)
|
## [@capire/hello-world](hello)
|
||||||
|
|||||||
@@ -3,9 +3,8 @@ const cds = require('@sap/cds/lib')
|
|||||||
describe('cap/samples - Custom Handlers', () => {
|
describe('cap/samples - Custom Handlers', () => {
|
||||||
|
|
||||||
const { GET, POST, expect } = cds.test(__dirname+'/../bookshop')
|
const { GET, POST, expect } = cds.test(__dirname+'/../bookshop')
|
||||||
beforeAll(()=>{
|
if (cds.User.default) cds.User.default = cds.User.Privileged // hard core monkey patch
|
||||||
cds.User.default = cds.User.Privileged // hard core monkey patch
|
else cds.User = cds.User.Privileged // hard core monkey patch for older cds releases
|
||||||
})
|
|
||||||
|
|
||||||
it('should reject out-of-stock orders', async () => {
|
it('should reject out-of-stock orders', async () => {
|
||||||
await POST `/browse/submitOrder ${{ book: 201, quantity: 5 }}`
|
await POST `/browse/submitOrder ${{ book: 201, quantity: 5 }}`
|
||||||
|
|||||||
@@ -1,12 +1,10 @@
|
|||||||
const cds = require('@sap/cds/lib')
|
const cds = require('@sap/cds/lib')
|
||||||
|
|
||||||
describe('cap/samples - Fiori APIs - v2', function() {
|
describe('cap/samples - Fiori APIs - v2', () => {
|
||||||
|
|
||||||
const { GET, expect, axios } = cds.test ('@capire/fiori', '--with-mocks')
|
const { GET, expect, axios } = cds.test ('@capire/fiori', '--with-mocks')
|
||||||
axios.defaults.auth = { username: 'alice', password: 'admin' }
|
axios.defaults.auth = { username: 'alice', password: 'admin' }
|
||||||
|
|
||||||
// if (this.timeout) this.timeout(1e6)
|
|
||||||
|
|
||||||
it('serves $metadata documents in v2', async () => {
|
it('serves $metadata documents in v2', async () => {
|
||||||
const { headers, data } = await GET `/v2/browse/$metadata`
|
const { headers, data } = await GET `/v2/browse/$metadata`
|
||||||
expect(headers).to.contain({
|
expect(headers).to.contain({
|
||||||
|
|||||||
@@ -1,12 +1,8 @@
|
|||||||
const cds = require('@sap/cds/lib')
|
|
||||||
|
|
||||||
describe('cap/samples - Localized Data', () => {
|
describe('cap/samples - Localized Data', () => {
|
||||||
|
|
||||||
const { GET, expect } = cds.test (__dirname)
|
const { GET, expect, cds } = require('@sap/cds/lib').test (__dirname)
|
||||||
beforeAll(()=>{
|
if (cds.User.default) cds.User.default = cds.User.Privileged // hard core monkey patch
|
||||||
cds.User.default = cds.User.Privileged // hard core monkey patch
|
else cds.User = cds.User.Privileged // hard core monkey patch for older cds releases
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
it('serves localized $metadata documents', async () => {
|
it('serves localized $metadata documents', async () => {
|
||||||
const { data } = await GET(`/browse/$metadata?sap-language=de`, { headers: { 'accept-language': 'de' }})
|
const { data } = await GET(`/browse/$metadata?sap-language=de`, { headers: { 'accept-language': 'de' }})
|
||||||
|
|||||||
@@ -1,13 +1,16 @@
|
|||||||
const cds = require('@sap/cds/lib')
|
const cds = require('@sap/cds/lib')
|
||||||
|
const {resolve} = require('path')
|
||||||
|
|
||||||
describe('cap/samples - Messaging', ()=>{
|
describe('cap/samples - Messaging', ()=>{
|
||||||
|
|
||||||
const { expect } = cds.test.in(__dirname,'..')
|
const { expect } = cds.test
|
||||||
const _model = '@capire/reviews'
|
const _model = '@capire/reviews'
|
||||||
const Reviews = 'sap.capire.reviews.Reviews'
|
const Reviews = 'sap.capire.reviews.Reviews'
|
||||||
beforeAll(()=>{
|
if (cds.User.default) cds.User.default = cds.User.Privileged // hard core monkey patch
|
||||||
cds.User.default = cds.User.Privileged // hard core monkey patch
|
else cds.User = cds.User.Privileged // hard core monkey patch for older cds releases
|
||||||
})
|
|
||||||
|
beforeAll(() => { cds.root = resolve(__dirname, '..') })
|
||||||
|
afterAll(() => { cds.root = process.cwd() })
|
||||||
|
|
||||||
it ('should bootstrap sqlite in-memory db', async()=>{
|
it ('should bootstrap sqlite in-memory db', async()=>{
|
||||||
const db = await cds.deploy (_model) .to ('sqlite::memory:')
|
const db = await cds.deploy (_model) .to ('sqlite::memory:')
|
||||||
@@ -32,7 +35,6 @@ describe('cap/samples - Messaging', ()=>{
|
|||||||
|
|
||||||
it ('should add review', async ()=>{
|
it ('should add review', async ()=>{
|
||||||
const review = { subject: "201", title: "Captivating", rating: ++N }
|
const review = { subject: "201", title: "Captivating", rating: ++N }
|
||||||
cds._debug = 1
|
|
||||||
const response = await srv.create ('Reviews') .entries (review)
|
const response = await srv.create ('Reviews') .entries (review)
|
||||||
expect (response) .to.containSubset (review)
|
expect (response) .to.containSubset (review)
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -4,6 +4,47 @@ describe('cap/samples - Bookshop APIs', () => {
|
|||||||
const { GET, expect, axios } = cds.test ('@capire/bookshop')
|
const { GET, expect, axios } = cds.test ('@capire/bookshop')
|
||||||
axios.defaults.auth = { username: 'alice', password: 'admin' }
|
axios.defaults.auth = { username: 'alice', password: 'admin' }
|
||||||
|
|
||||||
|
// Genres
|
||||||
|
const Drama = {
|
||||||
|
"name": "Drama",
|
||||||
|
"descr": null,
|
||||||
|
"ID": 11,
|
||||||
|
"parent_ID": 10
|
||||||
|
}
|
||||||
|
const Mystery = {
|
||||||
|
"name": "Mystery",
|
||||||
|
"descr": null,
|
||||||
|
"ID": 16,
|
||||||
|
"parent_ID": 10
|
||||||
|
}
|
||||||
|
const Fantasy = {
|
||||||
|
"name": "Fantasy",
|
||||||
|
"descr": null,
|
||||||
|
"ID": 13,
|
||||||
|
"parent_ID": 10
|
||||||
|
}
|
||||||
|
|
||||||
|
// Currencies
|
||||||
|
const GBP = {
|
||||||
|
"name": "British Pound",
|
||||||
|
"descr": null,
|
||||||
|
"code": "GBP",
|
||||||
|
"symbol": "£"
|
||||||
|
}
|
||||||
|
const USD = {
|
||||||
|
"name": "US Dollar",
|
||||||
|
"descr": null,
|
||||||
|
"code": "USD",
|
||||||
|
"symbol": "$"
|
||||||
|
}
|
||||||
|
const JPY = {
|
||||||
|
"name": "Yen",
|
||||||
|
"descr": null,
|
||||||
|
"code": "JPY",
|
||||||
|
"symbol": "¥"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
it('serves $metadata documents in v4', async () => {
|
it('serves $metadata documents in v4', async () => {
|
||||||
const { headers, status, data } = await GET `/browse/$metadata`
|
const { headers, status, data } = await GET `/browse/$metadata`
|
||||||
expect(status).to.equal(200)
|
expect(status).to.equal(200)
|
||||||
@@ -16,15 +57,12 @@ describe('cap/samples - Bookshop APIs', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
it('serves ListOfBooks?$expand=genre,currency', async () => {
|
it('serves ListOfBooks?$expand=genre,currency', async () => {
|
||||||
const Mystery = { ID: 16, name: 'Mystery', descr: null, parent_ID: 10 }
|
|
||||||
const Romance = { ID: 15, name: 'Romance', descr: null, parent_ID: 10 }
|
|
||||||
const USD = { code: 'USD', name: 'US Dollar', descr: null, symbol: '$' }
|
|
||||||
const { data } = await GET `/browse/ListOfBooks ${{
|
const { data } = await GET `/browse/ListOfBooks ${{
|
||||||
params: { $search: 'Po', $select: `title,author`, $expand:`genre,currency` },
|
params: { $search: 'Po', $select: `title,author`, $expand:`genre,currency` },
|
||||||
}}`
|
}}`
|
||||||
expect(data.value).to.eql([
|
expect(data.value).to.eql([
|
||||||
{ ID: 251, title: 'The Raven', author: 'Edgar Allen Poe', genre:Mystery, currency:USD },
|
{ ID: 251, title: 'The Raven', author: 'Edgar Allen Poe', genre:Mystery, currency:USD },
|
||||||
{ ID: 252, title: 'Eleonora', author: 'Edgar Allen Poe', genre:Romance, currency:USD },
|
{ ID: 252, title: 'Eleonora', author: 'Edgar Allen Poe', genre:Mystery, currency:USD },
|
||||||
])
|
])
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -88,10 +126,14 @@ describe('cap/samples - Bookshop APIs', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
it('serves user info', async () => {
|
it('serves user info', async () => {
|
||||||
const { data: alice } = await GET `/user/me`
|
{
|
||||||
expect(alice).to.containSubset({ id: 'alice', locale:'en' })
|
const { data } = await GET (`/user/me`)
|
||||||
const { data: joe } = await GET (`/user/me`, {auth: { username: 'joe' }})
|
expect(data).to.containSubset({ id: 'alice', locale:'en', tenant: null })
|
||||||
expect(joe).to.containSubset({ id: 'joe', locale:'en' })
|
}
|
||||||
|
{
|
||||||
|
const { data } = await GET (`/user/me`, {auth: { username: 'joe' }})
|
||||||
|
expect(data).to.containSubset({ id: 'joe', locale:'en', tenant: null })
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|||||||
57
test/registry.test.js
Normal file
57
test/registry.test.js
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
|
||||||
|
const cds = require('@sap/cds/lib')
|
||||||
|
const { fork } = require('child_process')
|
||||||
|
const { resolve } = require('path')
|
||||||
|
const verbose = process.env.CDS_TEST_VERBOSE
|
||||||
|
|
||||||
|
describe('cap/samples - Local NPM registry', () => {
|
||||||
|
|
||||||
|
const { expect } = cds.test
|
||||||
|
// ||true
|
||||||
|
|
||||||
|
let registry
|
||||||
|
let axios
|
||||||
|
const cwd = resolve(__dirname, '..')
|
||||||
|
|
||||||
|
before(async ()=> {
|
||||||
|
const env = Object.assign(process.env, {PORT:'0'})
|
||||||
|
const res = await exec (resolve(cwd, '.registry/server.js'), {cwd, stdio: 'pipe', env})
|
||||||
|
registry = res.cp
|
||||||
|
axios = require('axios').default.create ({ baseURL: res.url, validateStatus: (status)=>status<500 })
|
||||||
|
})
|
||||||
|
|
||||||
|
after(() => { registry.kill() })
|
||||||
|
|
||||||
|
for (const mod of ['bookshop', 'data-viewer', 'fiori','orders','reviews']) {
|
||||||
|
it(`should serve ${mod}`, async () => {
|
||||||
|
const resp = await axios.get(`/@capire/${mod}`)
|
||||||
|
expect(resp.data).to.containSubset({name: `@capire/${mod}`, versions:{}})
|
||||||
|
const versions = Object.values(resp.data.versions)
|
||||||
|
await axios.get(versions[0].dist.tarball)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
it(`should return 404 for unknown packages`, async () => {
|
||||||
|
let resp = await axios.get(`/@capire/foo`)
|
||||||
|
expect(resp.status).to.equal(404)
|
||||||
|
resp = await axios.get(`/foo`)
|
||||||
|
expect(resp.status).to.equal(404)
|
||||||
|
})
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
function exec (script, opts) {
|
||||||
|
return new Promise((resolve, reject)=> {
|
||||||
|
const cp = fork (script, [], opts)
|
||||||
|
.on('error', err => reject(new Error(err)))
|
||||||
|
cp.stdout.on('data', chunk => {
|
||||||
|
if (verbose) console.log(chunk.toString())
|
||||||
|
if (chunk.toString().match(/listening.*(http:.*:\d+)/i)) {
|
||||||
|
resolve({cp, url:RegExp.$1})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
cp.stderr.on('data', chunk => {
|
||||||
|
if (verbose) console.error(chunk.toString())
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user