forked from cap-js-community/odata-v2-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* - 1.9.0 - Project Restructuring + Housekeeping - CDS 6 compatible version - Introduce proxy option `dynamicPort` to handle dynamic port assignment (useful for unit-testing) - Represent time component of `cds.Date/Edm.DateTime` with second precision (i.e. `00:00:00`) * - 1.9.0 - Project Restructuring + Housekeeping - Rename integration-test to test-integration - CDS 6 compatible version * - 1.9.0 - Project Restructuring + Housekeeping - Rename integration-test to test-integration - CDS 6 compatible version * Use target: "auto" instead of new proxy option "dynamicPort" Align Documentation * Min. Node 14 * Update MD * XMake: Only Unit-Tests * XMake: Only Unit-Tests * Run script * Test refactorings * Compatibility: stay with Node8 / ES2019 * CDS 5.9.8 Tests wait for test data setup * Deps * CDS 6 Update
- Loading branch information
Showing
166 changed files
with
5,500 additions
and
2,604 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
app/ | ||
approuter/ | ||
test/ | ||
integration-test/ | ||
reports/ | ||
node_modules/ | ||
*.ts | ||
reports/ | ||
test/ | ||
test-integration/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,11 @@ | ||
gen/ | ||
db/gen/ | ||
srv/gen/ | ||
.gen/ | ||
|
||
node_modules/ | ||
target/ | ||
*.db | ||
.DS_Store | ||
_out | ||
.che/ | ||
.cds_gen.log | ||
*.orig | ||
|
||
# mta | ||
*.mtar | ||
.mta/ | ||
|
||
# bower | ||
bower_components/ | ||
|
||
#coverage | ||
reports | ||
|
||
# idea | ||
.idea/ | ||
|
||
#JUnit | ||
junit.xml | ||
|
||
# temp | ||
.DS_Store | ||
node_modules/ | ||
reports/ | ||
temp/ | ||
memheap.txt | ||
memleaks.txt | ||
|
||
# typescript | ||
test-server-ts.js | ||
test-server-ts.js.map | ||
test/_env/gen/ | ||
test/_env/util/typescript/test-server.js | ||
test/_env/util/typescript/test-server.js.map | ||
test/_env/test.db | ||
test/_env/test.db-journal | ||
test-integration/_env/gen/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,16 @@ | ||
.idea/ | ||
app/ | ||
approuter/ | ||
node_modules/ | ||
reports/ | ||
integration-test/ | ||
test/ | ||
test-integration/ | ||
.eslintignore | ||
.eslintrc.yml | ||
.gitignore | ||
.npmignore | ||
.prettierignore | ||
.prettierrc.yml | ||
.xmake.cfg | ||
CONTRIBUTING.md | ||
jest.config.js | ||
jest-integration-test.json | ||
junit.xml | ||
test-server.js | ||
test-server-ts.ts | ||
test-server-ts.js | ||
tsconfig.json | ||
jest.setup.js | ||
jest-xmake.config.js |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,25 @@ | ||
# Contribution Guide | ||
|
||
**Do you want to contribute to CDS OData V2 Adapter Proxy?** | ||
### Do you want to contribute to CDS OData V2 Adapter Proxy? | ||
|
||
Contributions via **pull requests** are welcome. | ||
|
||
The development team of CDS OData V2 Adapter Proxy is looking forward to any contribution. | ||
The following contribution guide gives you a high level overview of the project and should help to jump start your contribution. | ||
|
||
- Code is contained in file `lib/index.js` | ||
- Tests are located in folder `test` | ||
- Source code is located at file `src/index.js` | ||
- Typings are defined in `src/index.d.ts` | ||
- Unit Tests are located in folder `test` | ||
- HANA Integration Tests are located in folder `test-integration`: `npm test:integration` | ||
|
||
**Did find an issue?** | ||
### How to run the project? | ||
|
||
- `npm test`: Execute test suite (unit tests + integration tests) | ||
- `npm run test:unit`: Execute unit tests only | ||
- `npm run test:integration`: Execute integration tests only | ||
- `npm start`: Start test server incl. example apps (SQLite) | ||
- `npm run start:hana` Start test server incl. example apps (HANA) | ||
|
||
### Did find an issue? | ||
|
||
Open a new issue [here](https://github.wdf.sap.corp/cds-community/cds-odata-v2-adapter-proxy/issues/new). |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.