aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master
AgeCommit message (Collapse)AuthorFilesLines
2019-12-08Merge "fix cypress test: should enable correct menu items"Ittay Stern2-103/+39
2019-12-08Add existingVNFCounterMap to mock json file to display the Service Model.Alexey Sandler2-0/+2
Issue-ID: VID-724 Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com> Change-Id: I97ca6efa552ee16cf163ca39446ddc34f1a719da Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com>
2019-12-08Merge "UT convertResponseToUI - use ISOString to compare dates"Ittay Stern1-1/+1
2019-12-08Merge "Show previous instantiations button in new service modal"Ittay Stern9-7/+76
2019-12-08UT convertResponseToUI - use ISOString to compare datesEylon Malin1-1/+1
Issue-ID: VID-724 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com> Change-Id: I3077fc05413802f5891e42128bcc7e82d4fb5eb4
2019-12-08fix cypress test: should enable correct menu itemsEylon Malin2-103/+39
Issue-ID: VID-724 The cypress test not handling well scroll bar so decrease data Change-Id: I7541b7127866bb0cc8651d80ab2721846eafabde Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
2019-12-08Show previous instantiations button in new service modalSara Weiss9-7/+76
Issue-ID: VID-724 Signed-off-by: Sara Weiss <sara.weiss@intl.att.com> Change-Id: I18633adbabbc22c68f9bcd712427033deaffd33c
2019-12-05Call to useTemplate create Action in orderAlexey Sandler2-5/+6
to update state with template which was called from back end. Issue-ID: VID-724 Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com> Change-Id: I0726d54324e523d60bcd41116ee44b01a88d9c7b
2019-12-05Merge "Create UseTemplate Action and Reducer to update state with template ↵Ittay Stern4-0/+59
from BE."
2019-12-05Create UseTemplate Action and Reducer to update state with template from BE.Alexey Sandler4-0/+59
Issue-ID: VID-724 Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com> Change-Id: Ie6de2dd42c21c1bf1c93b1569ec84050618f410a Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com>
2019-12-05support recreate and isRecreateEnabled in instantiationStatus serviceEylon Malin2-0/+23
Issue-ID: VID-724 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com> Change-Id: Iae797bfa49d73059d67e66b5a6dc0ea62de1195c
2019-12-05support build recreate url in instantiationStatus serviceEylon Malin3-45/+63
Issue-ID: VID-724 Change-Id: I95891a7b2e9e16bd123408d3451df38a89796714 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
2019-12-04Create function that convert rollbackOnFailure value from String to BooleanAlexey Sandler2-3/+9
Issue-ID: VID-724 Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com> Change-Id: Ia3738a146d0b57e961e097c6b6e70e525c46a397
2019-12-04Adding Template button to new service instance + cypress test + filterYoav Schneiderman15-80/+855
Issue-ID: VID-724 Change-Id: Ie69a32dd6b74de57fd747a92935c1ce5edb86351 Signed-off-by: Yoav Schneiderman <yoav.schneiderman@intl.att.com> Signed-off-by: Ittay Stern <ittay.stern@att.com>
2019-12-04Extract subscriber-name only when it is not definedAlexey Sandler2-4/+12
This solves the Recreate issue when subscriber-name is already provided by the template, but Redux is not populated with `service.subscribers`. Issue-ID: VID-724 Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com> Change-Id: Id3bfd705015270352aef674d2119fc77838a3ddb Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com>
2019-12-03Drawing Board RECREATE will use a new route that retrieves a templateAlexey Sandler8-2/+180
Use endpoint "templateTopology" instead of "bulkForRetry" Issue-ID: VID-724 Change-Id: Ic92971e29d1f78768aeb82158ce424ff31bfbbb0 Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com>
2019-12-03Merge "free text filter in instantiationStatus Page"Ittay Stern14-53/+141
2019-12-03free text filter in instantiationStatus PageEylon Malin14-53/+141
Issue-ID: VID-724 Change-Id: I5f363ecc66ff1f1fef9c9d75a12a9c43403aa905 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
2019-12-02disable npm progress-bar by npmrc file instead of mvn goalAmichai Hemli2-10/+1
Issue-ID: VID-724 Signed-off-by: Amichai Hemli <amichai.hemli@intl.att.com> Change-Id: I2c1261b24bba3e16dd858e3dd77c9b0a188e310c
2019-12-02FE getServicesJobInfo can filter by serviceModelIdEylon Malin4-7/+25
Issue-ID: VID-724 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com> Change-Id: I3acff0f47810825d90b91dbeaaedcdd348c7d733
2019-12-01Cypress to drive recreation from templatesIttay Stern4-0/+392
A new route "RECREATE" allows the half-way between RETRY and CREATE: It is "retry" because historic topology is loaded. It is "create" because a new instance is created upon "Deploy". Following commits should modify business-code, so that: - The expectedPostAsyncInstantiation assertion pass; - User is navigated the Instantiation-Status page; - The template topology will be from a designated endpoint "templateTopology", instead of "bulkForRetry"; - Consider the hack in `templates__instance_template.json`, where action is "None_Create" instead of "Create" to workaround a state-oriented problem in the method `extractServiceFields()`. Issue-ID: VID-724 Change-Id: I0fc282b506a05b8161f3b3f96959493d3843c7f9 Signed-off-by: Ittay Stern <ittay.stern@att.com>
2019-12-01Merge changes Ia06b7afe,I31b646b4Ittay Stern23-51/+11
* changes: remove FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARD remove FLAG_DEFAULT_VNF
2019-12-01remove FLAG_SETTING_DEFAULTS_IN_DRAWING_BOARDEylon Malin22-41/+8
Issue-ID: VID-721 Change-Id: Ia06b7afe0cc2aa6f906f56802dc537f6fec283d0 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
2019-11-28remove FLAG_DEFAULT_VNFEylon Malin8-10/+3
Issue-ID: VID-721 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com> Change-Id: I31b646b4dd5a81c4904a77c0386e27137a76a9fd
2019-11-28adding testing to multi select service.Yoav Schneiderman2-9/+168
Issue-ID: VID-722 Signed-off-by: Yoav Schneiderman <yoav.schneiderman@intl.att.com> Change-Id: Ieb4ddb06a76f3d85b8227574ea519abedad85a09
2019-11-28remove FLAG_1810_CR_SOFT_DELETE_ALACARTE_VF_MODULEEylon Malin9-39/+2
Issue-ID: VID-721 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com> Change-Id: I80e3f8edbc187acaf13fdcc089ba15da33dc0ec5
2019-11-28fix some methods signature to be more TypeScriptEylon Malin2-3/+4
Issue-ID: VID-603 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com> Change-Id: I50225f014abf0717b779f15f22a2185f1f92650b
2019-11-28update supplementaryFileContent at onSubmit of VfModule upgradeEylon Malin4-47/+94
Issue-ID: VID-603 Change-Id: I7fac657454de7a6d3674708c956eb099c11ad2ea Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
2019-11-27Merge "Quick fix for the expected class type in test"Ittay Stern1-1/+1
2019-11-27Quick fix for the expected class type in testAmir Skalka1-1/+1
Issue-ID: VID-723 Signed-off-by: Amir Skalka <amir.skalka@intl.att.com> Change-Id: I067241eb531c448b38ad37f75f0ff77457c9f069
2019-11-27add sdnc checkbox to vfm upgrade modalAlexey Sandler3-30/+32
Issue-ID: VID-603 Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com> Change-Id: Ic297486bc343419415bf3736ebb56944e72bf8b8 Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com>
2019-11-27use mergeObjectByPathAction for update VfModule properties upon upgradeEylon Malin3-13/+72
Issue-ID: VID-603 Change-Id: Icdec60aa0e0522e5af394184c5f700ed2d493e4e Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
2019-11-27Merge "add reducer action that can merge any object by path"Amichai Hemli3-20/+64
2019-11-27Merge "move SDN-C pre-load controller to basic control generator"Amichai Hemli4-17/+24
2019-11-27add reducer action that can merge any object by pathEylon Malin3-20/+64
Issue-ID: VID-603 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com> Change-Id: Ib34ed65d2ebb1f1dc1780205e4a60ab8515c8334
2019-11-27move SDN-C pre-load controller to basic control generatorAlexey Sandler4-17/+24
Issue-ID: VID-603 Change-Id: I2b70ab8e2437a8be3a8b3e37e9baa1bdd70cd0e5 Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com>
2019-11-26upgrade cypress to 3.6.1Eylon Malin3-6/+7
Issue-ID: VID-603 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com> Change-Id: Ief1114e24fe5b7a0975a1414ad5059a0d3812a88
2019-11-26Merge "Allow platform multi-selection for VNF in modern UI"Ittay Stern13-133/+298
2019-11-26extract VfModulePopupServiceBaseEylon Malin2-103/+113
Issue-ID: VID-603 Make VfModulePopuopService and VfModuleUpgradePopupService inherit from same base class Signed-off-by: Eylon Malin <eylon.malin@intl.att.com> Change-Id: Ie91aa4ef2afb0d7d807c0dd56944bd4e1777b8d0
2019-11-26Allow platform multi-selection for VNF in modern UIYoav Schneiderman13-133/+298
Issue-ID: VID-722 Change-Id: Id87f59fff128e277d9158b83f3908754375c8b01 Signed-off-by: Yoav Schneiderman <yoav.schneiderman@intl.att.com> Signed-off-by: Einat Vinouze <einat.vinouze@intl.att.com>
2019-11-26Replace vfmodule: add retainVolumeGroup to new upgrade modalSara Weiss3-14/+55
Issue-ID: VID-603 Change-Id: I1994d4464172613294198e21a77f31b752211888 Signed-off-by: Sara Weiss <sara.weiss@intl.att.com> Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
2019-11-26Merge "Extract concatSupplementaryFile out of VFM controller"Ittay Stern3-7/+28
2019-11-26Merge "Extract getSupplementaryFile out of VFM controller"Ittay Stern3-49/+65
2019-11-26Extract concatSupplementaryFile out of VFM controllerEylon Malin3-7/+28
Issue-ID: VID-603 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com> Change-Id: I7522442e5ae3109ac1abeca1f82b2a980a10e30d
2019-11-26Extract getSupplementaryFile out of VFM controllerAmir Skalka3-49/+65
Issue-ID: VID-603 Change-Id: I8ccc2e3cdc79faded73f5811fee99cc78c8ebd47 Signed-off-by: Amir Skalka <amir.skalka@intl.att.com> Signed-off-by: Eylon Malin <eylon.malin@intl.att.com>
2019-11-25Merge "remove EMPTY_DRAWING_BOARD_TEST feature flag"Ittay Stern17-20/+0
2019-11-25Merge "assert vfModule action after undo upgrade"Ittay Stern1-0/+11
2019-11-25assert vfModule action after undo upgradeEylon Malin1-0/+11
Issue-ID: VID-603 Signed-off-by: Eylon Malin <eylon.malin@intl.att.com> Change-Id: I58a30738793f25fd4f0d8efb48f13fed510d895d
2019-11-25upgrade vfModule retainAssignments true by default.Yoav Schneiderman3-2/+3
Issue-ID: VID-603 Signed-off-by: Yoav Schneiderman <yoav.schneiderman@intl.att.com> Change-Id: I9f8761b756968dcc91ab1cae998d47fa74ecccd0
2019-11-25VfModule upgrade: popup with retain-assignments checkboxYoav Schneiderman7-224/+396
Also: - undo upgrade -> remove field - cancel on popup works Issue-ID: VID-603 Change-Id: I47106ce4d042c777b56699d8c5c5e1e99f856a5e Signed-off-by: Yoav Schneiderman <yoav.schneiderman@intl.att.com>