mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-16 23:04:22 +01:00
new: pve (#307)
This commit is contained in:
136
test/pve_test.dart
Normal file
136
test/pve_test.dart
Normal file
@@ -0,0 +1,136 @@
|
||||
import 'dart:convert';
|
||||
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:toolbox/data/model/server/pve.dart';
|
||||
|
||||
const _raw = '''
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"maxmem": 12884901888,
|
||||
"type": "lxc",
|
||||
"cpu": 0.0544631947461575,
|
||||
"netin": 65412250538,
|
||||
"template": 0,
|
||||
"diskread": 324033204224,
|
||||
"maxcpu": 8,
|
||||
"disk": 29767077888,
|
||||
"diskwrite": 707866570752,
|
||||
"node": "pve",
|
||||
"vmid": 100,
|
||||
"mem": 5389254656,
|
||||
"status": "running",
|
||||
"netout": 66898114418,
|
||||
"uptime": 1204757,
|
||||
"id": "lxc/100",
|
||||
"maxdisk": 134145380352,
|
||||
"name": "Jellyfin"
|
||||
},
|
||||
{
|
||||
"vmid": 101,
|
||||
"node": "pve",
|
||||
"uptime": 0,
|
||||
"netout": 0,
|
||||
"status": "stopped",
|
||||
"mem": 0,
|
||||
"id": "qemu/101",
|
||||
"name": "ubuntu",
|
||||
"maxdisk": 137438953472,
|
||||
"maxmem": 6442450944,
|
||||
"cpu": 0,
|
||||
"netin": 0,
|
||||
"type": "qemu",
|
||||
"disk": 0,
|
||||
"diskread": 0,
|
||||
"template": 0,
|
||||
"maxcpu": 8,
|
||||
"diskwrite": 0
|
||||
},
|
||||
{
|
||||
"maxcpu": 4,
|
||||
"template": 0,
|
||||
"diskread": 23287297536,
|
||||
"disk": 0,
|
||||
"diskwrite": 39555984896,
|
||||
"maxmem": 4294967296,
|
||||
"type": "qemu",
|
||||
"netin": 2190678599,
|
||||
"cpu": 0.0516426831961466,
|
||||
"id": "qemu/102",
|
||||
"maxdisk": 0,
|
||||
"name": "win",
|
||||
"node": "pve",
|
||||
"vmid": 102,
|
||||
"mem": 1791827968,
|
||||
"status": "running",
|
||||
"netout": 213292068,
|
||||
"uptime": 1013075
|
||||
},
|
||||
{
|
||||
"maxcpu": 12,
|
||||
"id": "node/pve",
|
||||
"disk": 358415503360,
|
||||
"maxdisk": 998011547648,
|
||||
"cgroup-mode": 2,
|
||||
"node": "pve",
|
||||
"maxmem": 29287632896,
|
||||
"type": "node",
|
||||
"status": "online",
|
||||
"mem": 11522887680,
|
||||
"cpu": 0.0451634094268353,
|
||||
"level": "",
|
||||
"uptime": 1204771
|
||||
},
|
||||
{
|
||||
"id": "storage/pve/DSM",
|
||||
"disk": 1250082226176,
|
||||
"maxdisk": 9909187887104,
|
||||
"storage": "DSM",
|
||||
"node": "pve",
|
||||
"status": "available",
|
||||
"type": "storage",
|
||||
"plugintype": "cifs",
|
||||
"content": "snippets,backup,images,rootdir,vztmpl,iso",
|
||||
"shared": 1
|
||||
},
|
||||
{
|
||||
"type": "storage",
|
||||
"status": "available",
|
||||
"plugintype": "dir",
|
||||
"content": "iso,vztmpl,images,rootdir,backup,snippets",
|
||||
"shared": 0,
|
||||
"node": "pve",
|
||||
"maxdisk": 1967847137280,
|
||||
"storage": "hard",
|
||||
"id": "storage/pve/hard",
|
||||
"disk": 620950544384
|
||||
},
|
||||
{
|
||||
"maxdisk": 998011547648,
|
||||
"storage": "local",
|
||||
"disk": 358415503360,
|
||||
"id": "storage/pve/local",
|
||||
"status": "available",
|
||||
"type": "storage",
|
||||
"plugintype": "dir",
|
||||
"content": "backup,snippets,rootdir,images,vztmpl,iso",
|
||||
"shared": 0,
|
||||
"node": "pve"
|
||||
},
|
||||
{
|
||||
"id": "sdn/pve/localnetwork",
|
||||
"node": "pve",
|
||||
"sdn": "localnetwork",
|
||||
"status": "ok",
|
||||
"type": "sdn"
|
||||
}
|
||||
]
|
||||
}''';
|
||||
|
||||
void main() {
|
||||
test('parse pve', () {
|
||||
final list = json.decode(_raw)['data'] as List;
|
||||
final pveItems = list.map((e) => PveResIface.fromJson(e)).toList();
|
||||
expect(pveItems.length, 8);
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user