feat: use the port list page to instead of the virutal adapter

1. Add port list page, the old virtual adapter list page only show the
compute:nova bouned ports and unbouned ports
2. Update actions's allowed check: detach fip
3. Update port store: from virtualAdatperStore to portStore
4. Adjust file/folder path: from virtualAdapter to port

Change-Id: Iceec96731a9fd17de429b4e6061490a26e562162
This commit is contained in:
Jingwei.Zhang
2022-08-04 15:13:45 +08:00
parent 5edda3c4da
commit 6354d67d9d
53 changed files with 231 additions and 191 deletions

View File

@@ -46,7 +46,7 @@ test
│ │ │ ├── router.spec.js (Router)
│ │ │ ├── security-group.spec.js (Security group)
│ │ │ ├── topology.spec.js (Network topology)
│ │ │ ├── virtual-adapter.spec.js (Virtual Adapter)
│ │ │ ├── port.spec.js (Virtual Adapter)
│ │ │ └── vpn.spec.js (VPN)
│ │ └── storage (Storage)
│ │ ├── backup.spec.js (Backup)

View File

@@ -36,7 +36,7 @@ In the E2E process, when creating a resource, it is often necessary to create th
- `createNetworkPolicy`
- Create network QoS policy
- Parameter `name`, the name of the strategy
- Take virtual adapter modification QoS as an example: `test/e2e/integration/pages/network/virtual-adapter.spec.js`
- Take virtual adapter modification QoS as an example: `test/e2e/integration/pages/network/port.spec.js`
- Created a policy named `policyName` in preparation for modifying QoS
```javascript
@@ -119,7 +119,7 @@ In the E2E process, when creating a resource, it is often necessary to create th
- `createSecurityGroup`
- Create a security group
- Parameter `name`, the name of the security group
- Take the virtual adapter card as an example: `test/e2e/integration/pages/network/virtual-adapter.spec.js`
- Take the virtual adapter card as an example: `test/e2e/integration/pages/network/port.spec.js`
-To test management security group, you need to prepare the security group first
```javascript
@@ -249,7 +249,7 @@ In the E2E process, when creating a resource, it is often necessary to create th
router: routerListUrl,
networkQosPolicy: policyListUrl,
fip: fipListUrl,
virtualAdapter: virtualAdapterListUrl,
port: portListUrl,
// security
securityGroup: securityGroupListUrl,