Skip to content

Commit fe06029

Browse files
committed
HRINT-396 validate nodejs samples
1 parent ad2db23 commit fe06029

File tree

10 files changed

+265
-208
lines changed

10 files changed

+265
-208
lines changed
File renamed without changes.

.travis.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
language: shell
22
os: windows
3+
install:
4+
- PowerShell -Command 'Set-ExecutionPolicy -ExecutionPolicy RemoteSigned'
5+
- choco install nodejs-lts;
6+
env:
7+
- PATH="$PATH;C:\Program Files\nodejs"
38
script:
4-
- cd Raven.Documentation.Cli
5-
- dotnet restore
6-
- dotnet run
9+
- powershell "./scripts/verifyDocs.ps1"
10+
- powershell "./scripts/lintNodejsCodeSamples.ps1"
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,90 @@
1-
//region client_1
2-
import { DocumentStore } from "ravendb";
3-
4-
const store = new DocumentStore(
5-
["http://live-test.ravendb.net"], // URL to the Server
6-
// or list of URLs
7-
// to all Cluster Servers (Nodes)
8-
9-
"Northwind"); // Default database that DocumentStore will interact with
10-
11-
const conventions = store.conventions; // DocumentStore customizations
12-
13-
store.initialize(); // Each DocumentStore needs to be initialized before use.
14-
// This process establishes the connection with the Server
15-
// and downloads various configurations
16-
// e.g. cluster topology or client configuration
17-
18-
store.dispose(); // Dispose the resources claimed by the DocumentStore
19-
//endregion
20-
21-
class Category {
22-
constructor(name) {
23-
this.Id = null;
24-
this.Name = name;
25-
}
26-
}
27-
28-
class Product {
29-
constructor(name, categoryId, unitsInStock) {
30-
this.Id = null;
31-
this.Name = name;
32-
this.Category = categoryId;
33-
this.UnitsInStock = unitsInStock;
34-
}
35-
}
36-
37-
async function c2() {
38-
//region client_2
39-
const session = store.openSession(); // Open a session for a default 'Database'
40-
41-
const category = new Category("Database Category");
42-
43-
await session.store(category); // Assign an 'Id' and collection (Categories)
44-
// and start tracking an entity
45-
46-
const product = new Product(
47-
"RavenDB Database",
48-
category.Id,
49-
10);
50-
51-
await session.store(product); // Assign an 'Id' and collection (Products)
52-
// and start tracking an entity
53-
54-
await session.saveChanges(); // Send to the Server
55-
// one request processed in one transaction
56-
//endregion
57-
}
58-
59-
async function c22(productId) {
60-
//region client_3
61-
const session = store.openSession(); // Open a session for a default 'Database'
62-
63-
const product = await session
64-
.include("Category") // Include Category
65-
.load(productId); // Load the Product and start tracking
66-
67-
const category = await session
68-
.load(product.Category); // No remote calls,
69-
// Session contains this entity from .include
70-
71-
product.Name = "RavenDB"; // Apply changes
72-
category.Name = "Database";
73-
74-
await session.saveChanges(); // Synchronize with the Server
75-
// one request processed in one transaction
76-
//endregion
77-
}
78-
79-
async function c3() {
80-
//region client_4
81-
const session = store.openSession(); // Open a session for a default 'Database'
82-
83-
const productNames = await session
84-
.query({ collection: "Products" }) // Query for Products
85-
.whereGreaterThan("UnitsInStock", 5) // Filter
86-
.skip(0).take(10) // Page
87-
.selectFields("Name") // Project
88-
.all(); // Materialize query
89-
//endregion
90-
}
1+
//region client_1
2+
import { DocumentStore } from "ravendb";
3+
4+
const store = new DocumentStore(
5+
["http://live-test.ravendb.net"], // URL to the Server
6+
// or list of URLs
7+
// to all Cluster Servers (Nodes)
8+
9+
"Northwind"); // Default database that DocumentStore will interact with
10+
11+
const conventions = store.conventions; // DocumentStore customizations
12+
13+
store.initialize(); // Each DocumentStore needs to be initialized before use.
14+
// This process establishes the connection with the Server
15+
// and downloads various configurations
16+
// e.g. cluster topology or client configuration
17+
18+
store.dispose(); // Dispose the resources claimed by the DocumentStore
19+
//endregion
20+
21+
class Category {
22+
constructor(name) {
23+
this.Id = null;
24+
this.Name = name;
25+
}
26+
}
27+
28+
class Product {
29+
constructor(name, categoryId, unitsInStock) {
30+
this.Id = null;
31+
this.Name = name;
32+
this.Category = categoryId;
33+
this.UnitsInStock = unitsInStock;
34+
}
35+
}
36+
37+
async function c2() {
38+
//region client_2
39+
const session = store.openSession(); // Open a session for a default 'Database'
40+
41+
const category = new Category("Database Category");
42+
43+
await session.store(category); // Assign an 'Id' and collection (Categories)
44+
// and start tracking an entity
45+
46+
const product = new Product(
47+
"RavenDB Database",
48+
category.Id,
49+
10);
50+
51+
await session.store(product); // Assign an 'Id' and collection (Products)
52+
// and start tracking an entity
53+
54+
await session.saveChanges(); // Send to the Server
55+
// one request processed in one transaction
56+
//endregion
57+
}
58+
59+
async function c22(productId) {
60+
//region client_3
61+
const session = store.openSession(); // Open a session for a default 'Database'
62+
63+
const product = await session
64+
.include("Category") // Include Category
65+
.load(productId); // Load the Product and start tracking
66+
67+
const category = await session
68+
.load(product.Category); // No remote calls,
69+
// Session contains this entity from .include
70+
71+
product.Name = "RavenDB"; // Apply changes
72+
category.Name = "Database";
73+
74+
await session.saveChanges(); // Synchronize with the Server
75+
// one request processed in one transaction
76+
//endregion
77+
}
78+
79+
async function c3() {
80+
//region client_4
81+
const session = store.openSession(); // Open a session for a default 'Database'
82+
83+
const productNames = await session
84+
.query({ collection: "Products" }) // Query for Products
85+
.whereGreaterThan("UnitsInStock", 5) // Filter
86+
.skip(0).take(10) // Page
87+
.selectFields("Name") // Project
88+
.all(); // Materialize query
89+
//endregion
90+
}
+20-20
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
//region camera
2-
export class Camera {
3-
constructor(manufacturer, model, {
4-
dateOfListing,
5-
cost,
6-
zoom,
7-
megapixels,
8-
imageStabilizer
9-
}) {
10-
this.manufacturer = manufacturer;
11-
this.model = model;
12-
this.dateOfListing = dateOfListing;
13-
this.cost = cost;
14-
this.zoom = zoom;
15-
this.megapixels = megapixels;
16-
this.imageStabilizer = imageStabilizer;
17-
}
18-
}
19-
//endregion
20-
1+
//region camera
2+
export class Camera {
3+
constructor(manufacturer, model, {
4+
dateOfListing,
5+
cost,
6+
zoom,
7+
megapixels,
8+
imageStabilizer
9+
}) {
10+
this.manufacturer = manufacturer;
11+
this.model = model;
12+
this.dateOfListing = dateOfListing;
13+
this.cost = cost;
14+
this.zoom = zoom;
15+
this.megapixels = megapixels;
16+
this.imageStabilizer = imageStabilizer;
17+
}
18+
}
19+
//endregion
20+

0 commit comments

Comments
 (0)