Skip to content

Commit 1fe79d8

Browse files
authored
Code formating (#1404)
* Code formating and API documentation update - Ran npx prettier --write . with latest prettier package in zap project - Update the API documentation by running npm run apidoc - Fixing the env.test.js because prettier changed the line numbers of the code
1 parent 7322283 commit 1fe79d8

File tree

226 files changed

+13934
-9731
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

226 files changed

+13934
-9731
lines changed

cypress/e2e/attribute_validations/bitmap.cy.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ describe('Testing BITMAP type validation', () => {
2222
() => {
2323
cy.fixture('data').then((data) => {
2424
cy.get(
25-
`:nth-child(${data.bitmapinputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > input`
25+
`:nth-child(${data.bitmapinputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > input`,
2626
)
2727
.clear({ force: true })
2828
.type('test', { force: true })
2929
})
30-
}
30+
},
3131
)
3232
it('check if validation works properly', () => {
3333
cy.fixture('data').then((data) => {
3434
cy.get(
35-
`:nth-child(${data.bitmapinputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__bottom > .q-field__messages > div`
35+
`:nth-child(${data.bitmapinputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__bottom > .q-field__messages > div`,
3636
).should('exist')
3737
})
3838
})

cypress/e2e/attribute_validations/boolean.cy.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe('Testing BOOLEAN type validation', () => {
1616
cy.gotoAttributePage(
1717
data.endpoint1,
1818
data.cluster1,
19-
data.booleanclusterpath
19+
data.booleanclusterpath,
2020
)
2121
})
2222
})
@@ -26,17 +26,17 @@ describe('Testing BOOLEAN type validation', () => {
2626
() => {
2727
cy.fixture('data').then((data) => {
2828
cy.get(
29-
`:nth-child(${data.booleaninputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > input`
29+
`:nth-child(${data.booleaninputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > input`,
3030
)
3131
.clear({ force: true })
3232
.type('test', { force: true })
3333
})
34-
}
34+
},
3535
)
3636
it('check if validation works properly', () => {
3737
cy.fixture('data').then((data) => {
3838
cy.get(
39-
`:nth-child(${data.booleaninputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__bottom > .q-field__messages > div`
39+
`:nth-child(${data.booleaninputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__bottom > .q-field__messages > div`,
4040
).should('exist')
4141
})
4242
})

cypress/e2e/attribute_validations/enum8.cy.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ describe('Testing ENUM8 type validation', () => {
2222
() => {
2323
cy.fixture('data').then((data) => {
2424
cy.get(
25-
`:nth-child(${data.enum8inputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > input`
25+
`:nth-child(${data.enum8inputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > input`,
2626
)
2727
.clear({ force: true })
2828
.type('test', { force: true })
2929
})
30-
}
30+
},
3131
)
3232
it('check if validation works properly', () => {
3333
cy.fixture('data').then((data) => {
3434
cy.get(
35-
`:nth-child(${data.enum8inputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__bottom > .q-field__messages > div`
35+
`:nth-child(${data.enum8inputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__bottom > .q-field__messages > div`,
3636
).should('exist')
3737
})
3838
})

cypress/e2e/attribute_validations/int16.cy.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,22 @@ describe('Testing INT16U type validation', () => {
2222
() => {
2323
cy.fixture('data').then((data) => {
2424
cy.get(
25-
`:nth-child(${data.int16inputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > input`
25+
`:nth-child(${data.int16inputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > input`,
2626
)
2727
.clear({ force: true })
2828
.type('test', { force: true })
2929
})
30-
}
30+
},
3131
)
3232
it(
3333
'check if validation works properly',
3434
{ retries: { runMode: 2, openMode: 2 } },
3535
() => {
3636
cy.fixture('data').then((data) => {
3737
cy.get(
38-
`:nth-child(${data.int16inputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__bottom > .q-field__messages > div`
38+
`:nth-child(${data.int16inputpath}) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__bottom > .q-field__messages > div`,
3939
).should('exist')
4040
})
41-
}
41+
},
4242
)
4343
})

cypress/e2e/attribute_validations/int8.cy.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ describe('Testing INT8U type validation', () => {
2121
{ retries: { runMode: 2, openMode: 2 } },
2222
() => {
2323
cy.get(
24-
':nth-child(1) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > input'
24+
':nth-child(1) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > input',
2525
)
2626
.clear({ force: true })
2727
.type('test', { force: true })
28-
}
28+
},
2929
)
3030
it('check if validation works properly', () => {
3131
cy.get(
32-
':nth-child(1) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__bottom > .q-field__messages > div'
32+
':nth-child(1) > [style="min-width: 180px;"] > .q-field > .q-field__inner > .q-field__bottom > .q-field__messages > div',
3333
).should('exist')
3434
})
3535
})

cypress/e2e/attributes/check-required-attributes.cy.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ describe('Testing disabling enabled attributes', () => {
2121
{ retries: { runMode: 2, openMode: 2 } },
2222
() => {
2323
cy.get(
24-
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner '
24+
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner ',
2525
).click()
2626
cy.get(
27-
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner'
27+
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner',
2828
).should('be.visible')
2929
cy.get(
30-
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner'
30+
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner',
3131
).click()
3232
cy.contains(
33-
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner'
33+
'.attribute_table_body:first > :nth-child(2) > .q-mt-xs > .q-toggle__inner',
3434
).should('not.exist')
35-
}
35+
},
3636
)
3737
})

cypress/e2e/attributes/check-search.cy.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ describe('Testing attribute search', () => {
2626
.should('contain', data.attribute1)
2727
.and('contain', data.attribute2)
2828
})
29-
}
29+
},
3030
)
3131
it('Search for application', () => {
3232
cy.fixture('data').then((data) => {
3333
cy.get(
34-
'.col-auto > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > input'
34+
'.col-auto > .q-field > .q-field__inner > .q-field__control > .q-field__control-container > input',
3535
)
3636
.clear({ force: true })
3737
.type(data.searchString1, { force: true })

cypress/e2e/clusters/cluster-filter.cy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ describe('Testing cluster filters', () => {
2727
cy.fixture('data').then((data) => {
2828
cy.get('tbody').children().contains(data.cluster2).should('not.exist')
2929
})
30-
}
30+
},
3131
)
3232
})

cypress/e2e/clusters/cluster-search.cy.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ describe('Testing cluster search', () => {
4848
cy.dataCy('cluster-general').children().children().eq(0).click()
4949
cy.dataCy('cluster-general').should(
5050
'have.class',
51-
'q-expansion-item--collapsed'
51+
'q-expansion-item--collapsed',
5252
)
5353
cy.dataCy('cluster-general').children().children().eq(0).click()
5454
cy.dataCy('cluster-general').should(
5555
'have.class',
56-
'q-expansion-item--expanded'
56+
'q-expansion-item--expanded',
5757
)
5858
cy.dataCy('cluster-btn-closeall').click()
5959
cy.get('[data-test=Cluster').each(($row) => {

cypress/e2e/clusters/dimmable-light.cy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ describe(
2525
.type(data.cluster4)
2626
})
2727
})
28-
}
28+
},
2929
)

cypress/e2e/endpoints/edit-endpoint.cy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ describe('Testing Editing endpoints', () => {
3535
cy.fixture('data').then((data) => {
3636
cy.get('aside').children().should('contain', data.endpoint2)
3737
})
38-
}
38+
},
3939
)
4040
})

cypress/e2e/theme/theme.cy.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ describe('Check theme functionality', () => {
2222
cy.wait(500)
2323
cy.get('#darkTheme').find('input').uncheck({ force: true })
2424
cy.get('body').should('have.class', 'body--light')
25-
}
25+
},
2626
)
2727

2828
it(
@@ -33,7 +33,7 @@ describe('Check theme functionality', () => {
3333
cy.wait(500)
3434
cy.get('#darkTheme').find('input').check({ force: true })
3535
cy.get('body').should('have.class', 'body--dark')
36-
}
36+
},
3737
)
3838

3939
it('RendererApi: set light theme', () => {

cypress/e2e/ui/notification-panel.cy.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ describe('Check notification panel functionality', () => {
2222
cy.get('#NotificationPanel')
2323
.parent()
2424
.should('not.have.class', ' q-layout--prevent-focus')
25-
}
25+
},
2626
)
2727
it('Check active status on navbar', () => {
2828
cy.get('#Notifications').should('have.class', 'navmenu-item--active')
@@ -36,7 +36,7 @@ describe('Check notification panel functionality', () => {
3636
cy.get('#NotificationPanel')
3737
.parent()
3838
.should('have.class', 'q-layout--prevent-focus')
39-
}
39+
},
4040
)
4141
it(
4242
'Open notification panel and open preview panel',
@@ -51,6 +51,6 @@ describe('Check notification panel functionality', () => {
5151
cy.get('#NotificationPanel')
5252
.parent()
5353
.should('have.class', 'q-layout--prevent-focus')
54-
}
54+
},
5555
)
5656
})

cypress/support/commands.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Cypress.Commands.add('gotoAttributePage', (endpoint, cluster, nth = 0) => {
1818
cy.get('div').contains(cluster).click({ force: true })
1919
cy.wait(1000)
2020
cy.get(
21-
`#${cluster} > .q-expansion-item__container > .q-expansion-item__content > .q-card > .q-card__section > .row > .q-table__container > .q-table__middle > .q-table > tbody > :nth-child(1) > :nth-child(7) > .q-btn `
21+
`#${cluster} > .q-expansion-item__container > .q-expansion-item__content > .q-card > .q-card__section > .row > .q-table__container > .q-table__middle > .q-table > tbody > :nth-child(1) > :nth-child(7) > .q-btn `,
2222
)
2323
.eq(nth)
2424
.click({ force: true })

docs/ZAP-on-Windows.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,26 @@ In desktop search bar, input `Windows Powershell` and run as administrator. Run
1111
Install from https://chocolatey.org/install
1212

1313
Check if installed properly:
14+
1415
```
1516
choco -v
1617
```
18+
1719
Install pkgconfiglite package:
20+
1821
```
1922
choco install pkgconfiglite
2023
```
2124

2225
### 3. Install Node if you have not:
26+
2327
```
2428
choco install nodejs-lts
2529
```
26-
*the version has to be 18 to pass version check test, after install, check with `node -v`
2730

28-
*if you install Node already, and fail some tests similar to `cannot find Node`, reinstall Node with chocolatey again
31+
\*the version has to be 18 to pass version check test, after install, check with `node -v`
32+
33+
\*if you install Node already, and fail some tests similar to `cannot find Node`, reinstall Node with chocolatey again
2934

3035
### 4. Follow the instruction page for other installation details
3136

@@ -36,13 +41,15 @@ https://github.com/project-chip/zap/blob/master/docs/development-instructions.md
3641
### 1. sqlite3
3742

3843
When running ZAP (eg. `npm run zap`), if you see an error about `sqlite3.node` in a pop up window, run:
44+
3945
```
4046
npm rebuild sqlite3
4147
```
4248

4349
### 2. electron-builder:
4450

4551
When doing npm install, in post-install, if there is an error on the following command, related to `electron-builder install-app-deps`, `npx electron-rebuild canvas failed` or `node-pre-gyp`, it is because the current `canvas` version is not compatible with Windows, and the installation error will not cause a failure in running ZAP. node-canvas is working on the solution now and the issue will be solved in near future.
52+
4653
```
4754
"postinstall": "electron-builder install-app-deps && husky install && npm rebuild canvas --update-binary && npm run version-stamp"
4855
```
@@ -52,20 +59,23 @@ When doing npm install, in post-install, if there is an error on the following c
5259
### 1. Exceed Timeout
5360

5461
If 'npm run test' fails due to `Exceeded timeout of 1500 ms for a test. Use jest.setTimeout(newTimeout) to increase the timeout value, if this is a long-running test.`, set the following environment variables to increase timeouts for all tests.
62+
5563
```
5664
$env:ZAP_TEST_TIMEOUT = 50000000; $env:ZAP_TEST_TIMEOUT_SHORT = 50000000; $env:ZAP_TEST_TIMEOUT_MEDIUM = 50000000; $env:ZAP_TEST_TIMEOUT_LONG = 50000000
5765
```
5866

5967
### 2. Test Suite failed to run (Canvas not found)
6068

6169
If 'npm run test' fails due to `Test suite failed to run. Cannot find module '../build/Release/canvas.node'` or `\zap\node_modules\canvas\build\Release\canvas.node is not a valid Win32 application.`, rebuild canvas:
70+
6271
```
6372
npm rebuild canvas --update-binary
6473
```
6574

6675
### 3. get index.html or other server issue
6776

6877
If `npm run test` fails due to `get index.html request failed with status code 404` in unit tests or having server connection issues in e2e-ci tests, run:
78+
6979
```
7080
npm run build
7181
```
@@ -74,4 +84,4 @@ npm run build
7484

7585
Check if node version is v18, and try to install it with Chocolatey
7686

77-
Also, you can check the faq doc for other known issues: https://github.com/project-chip/zap/blob/master/docs/faq.md
87+
Also, you can check the faq doc for other known issues: https://github.com/project-chip/zap/blob/master/docs/faq.md

docs/access.md

+11-6
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ these features to the required and supported access control SDK features. ZAP ge
77

88
ZAP access control defines three base terms:
99

10-
1. **operation** : it's something that can be done. Example: read, write, invoke.
11-
2. **role**: it's a privilege of an actor. Such as "View privilege", "Administrative rol", etc.
12-
3. **modifiers**: special access control conditions, such as _fabric sensitive_ data or _fabric scoped_ data.
10+
1. **operation** : it's something that can be done. Example: read, write, invoke.
11+
2. **role**: it's a privilege of an actor. Such as "View privilege", "Administrative rol", etc.
12+
3. **modifiers**: special access control conditions, such as _fabric sensitive_ data or _fabric scoped_ data.
1313

1414
The base terms are defined in the metadata XML under a top tag `<accessControl>`. Example of access control base term definitions:
1515

@@ -36,12 +36,14 @@ Each individual access condition can be defined with an access triplet in the XM
3636
Access triplet is a combination of an _operation_, _role_ and _modifier_. They are optional, so you can only have one of these. A missing part of triplet generally means permissivenes, but that's implementation specific for the given SDK. An entity, that defines it's access can have one or more access triplets.
3737

3838
Example:
39+
3940
```
4041
<attribute side="server" code="0x0000" define="AT1" type="INT64U" writable="false" optional="true">
4142
<description>at1</description>
4243
<access op="write" role="manage" modifier="fabric-scoped"/>
4344
</attribute>
4445
```
46+
4547
This is a definition of an attribute that has an access triplet, declaring it allows _write_ operation by a _manage_ role, with _fabric-scoped_ modifier applied.
4648

4749
## Default permissions
@@ -51,6 +53,7 @@ ZCL entities can define their own individual permissions. However, there is also
5153
Default permissions are declared via a `<defaultAccess>` tag at the toplevel of the XML.
5254

5355
Example:
56+
5457
```
5558
<defaultAccess type="command">
5659
<access op="invoke"/>
@@ -70,10 +73,12 @@ Example:
7073

7174
The basic template helper to use is the `{{#access}} ... {{/access}}` iterator. This iterator iterates over all the given access triplets.
7275
It supports 2 options:
73-
* `entity="attribute/command/event"` - if the entity can't be determined from context, this sets the entity type.
74-
* `includeDefault="true/false"` - determines if default values are included or not.
76+
77+
- `entity="attribute/command/event"` - if the entity can't be determined from context, this sets the entity type.
78+
- `includeDefault="true/false"` - determines if default values are included or not.
7579

7680
Example:
81+
7782
```
7883
{{#zcl_clusters}}
7984
Cluster: {{name}} [{{code}}]
@@ -97,4 +102,4 @@ Cluster: {{name}} [{{code}}]
97102
{{/zcl_events}}
98103
99104
{{/zcl_clusters}}
100-
```
105+
```

0 commit comments

Comments
 (0)