Hi,
when deactivating a testcase version, the information of the custom fields get lost.
Is there a way to avoid this, or is this on purpose?
My workaround is to use keywords instead. They remain after deactivating the testcase as well as added platforms on design.
Thanks in advance
(local Windows 10 installation of TestLink 1.9.20 DEV BITNAMI)
deactivate test case delete custom field information
Moderators: Amaradana, TurboPT, TL Developers
-
- TestLink user
- Posts: 10
- Joined: Sat Jan 08, 2022 3:32 pm
Re: deactivate test case delete custom field information
Would you mind to do a fresh install of github code from branch testlink_1_9_20_fixed and retest?
-
- TestLink user
- Posts: 10
- Joined: Sat Jan 08, 2022 3:32 pm
Re: deactivate test case delete custom field information
I am a little bit worried about export and import issues of my excisting testcases and settings after deinstall and reinstall another version.
Is it possible to do run a second local installation?
Is it possible to do run a second local installation?
-
- TestLink user
- Posts: 10
- Joined: Sat Jan 08, 2022 3:32 pm
Re: deactivate test case delete custom field information
I don't have the possibility yet to install TestLink on a server, I use the local installation packed by BITNAMI.
When I understand right, the github code from branch testlink_1_9_20_fixed is not available for a local installation.
This is why I can't retest this topic with the testlink_1_9_20_fixed version by myself.
When I understand right, the github code from branch testlink_1_9_20_fixed is not available for a local installation.
This is why I can't retest this topic with the testlink_1_9_20_fixed version by myself.
Re: deactivate test case delete custom field information
You can use a local installation,without issues
Re: deactivate test case delete custom field information
I've confirmed the issue
Would you mind to open the issue on mantis?
Would you mind to open the issue on mantis?
Re: deactivate test case delete custom field information
quick fix
testcaseCommands.class.php
in function setActiveAttr(&$argsObj,$request) {
change
$this->show($argsObj,$request,array('status_ok' => 1));
to
$this->show($argsObj,$request,['status_ok' => 1],['updateCFOnDB' => false]);
testcaseCommands.class.php
in function setActiveAttr(&$argsObj,$request) {
change
$this->show($argsObj,$request,array('status_ok' => 1));
to
$this->show($argsObj,$request,['status_ok' => 1],['updateCFOnDB' => false]);
-
- TestLink user
- Posts: 10
- Joined: Sat Jan 08, 2022 3:32 pm
Re: deactivate test case delete custom field information
Thanks for opening the issue