Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
Copyright (c) ETSI 2017.
This software is subject to copyrights owned by ETSI. Non-exclusive permission
is hereby granted, free of charge, to copy, reproduce and amend this file
under the following conditions: It is provided "as is", without warranty of any
kind, expressed or implied.
ETSI shall never be liable for any claim, damages, or other liability arising
from its use or inability of use.This permission does not apply to any documentation
associated with this file for which ETSI keeps all rights reserved. The present
copyright notice shall be included in all copies of whole or part of this
file and shall not imply any sub-license right.
*/
Package nfv_tst_007_commons {
Type MSG;
Gate Type TestPort accepts MSG;
Annotation PRECONDITION ;
Annotation STEP;
Annotation TYPE;
Annotation APPLICABILITY;
Component Type NFVO having {
gate tst of type TestPort ;
gate toVnfm of type TestPort;
gate toVim of type TestPort;
}
Component Type VNFM having {
gate tst of type TestPort ;
gate toNfvo of type TestPort;
gate toVim of type TestPort;
}
Component Type VIM having {
gate tst of type TestPort ;
gate toVnfm of type TestPort;
}
Component Type NFVI having {
gate tst of type TestPort ;
gate toVim of type TestPort;
gate toEmvnf of type TestPort;
}
Component Type EMVNF having {
gate tst of type TestPort ;
gate toVnfm of type TestPort;
}
Component Type TestSystem having {
gate tst of type TestPort;
}
Test Configuration NFV_TST_007_conf_1 {
create Tester tstSym of type TestSystem;
create SUT nfvo of type NFVO;
create SUT vnfm of type VNFM;
create SUT vim of type VIM;
create SUT emvnf of type EMVNF;
create SUT nfvi of type NFVI;
connect tstSym.tst to nfvo.tst;
connect tstSym.tst to vnfm.tst;
connect tstSym.tst to vim.tst;
connect tstSym.tst to emvnf.tst;
connect tstSym.tst to nfvi.tst;
}
}