From Fedora Project Wiki

(Correct mistakes)
(remove note to install fedora-repos-modular again)
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:
|description= This test cases checks that '''dnf''' is able to protect modular packages from being updated when a modular repository is unavailable. According to this dnf [https://bugzilla.redhat.com/show_bug.cgi?id=1616167 bug], it does not remember any information about the origin of the package. So, when the metadata from modular repositories are not available to the system, dnf will override the modular package and will update it to the newest package available in the non-modular repository.
|description= This test cases checks that '''dnf''' is able to protect modular packages from being updated when a modular repository is unavailable. According to this dnf [https://bugzilla.redhat.com/show_bug.cgi?id=1616167 bug], it does not remember any information about the origin of the package. So, when the metadata from modular repositories are not available to the system, dnf will override the modular package and will update it to the newest package available in the non-modular repository.
|setup=  
|setup=  
# For Fedora 29, modularity is enabled by default. To more about modules, follow the instructions in this test case [https://fedoraproject.org/wiki/User:Lruzicka/Draft/dnf_module_list here]
# To start and learn how to list modules, follow the instructions in [[QA:Testcase_Modularity_module_list|this test case]].


|actions=  
|actions=  
Line 8: Line 8:
<li>Update your system.<br/>
<li>Update your system.<br/>
<code>dnf update</code></li>
<code>dnf update</code></li>
<li>Enable the <code>nodejs</code> module in stream 8. <br/>
<li>Enable the <code>nodejs</code> module in stream 10. <br/>
<code>dnf module enable nodejs:8</code></li>
<code>dnf module enable nodejs:10</code></li>
<li>Install the <code>nodejs</code> module in stream 8. <br/>
<li>Install the <code>nodejs</code> module in stream 10. <br/>
<code>dnf module install nodejs:8</code></li>
<code>dnf module install nodejs:10</code></li>
<li>Update your system with modular repositories disabled. <br/>
<li>Update your system with modular repositories disabled. <br/>
<code>dnf update --disablerepo=\*modular</code></li>  
<code>dnf update --disablerepo=\*modular</code></li>  

Revision as of 01:43, 11 July 2020

Description

This test cases checks that dnf is able to protect modular packages from being updated when a modular repository is unavailable. According to this dnf bug, it does not remember any information about the origin of the package. So, when the metadata from modular repositories are not available to the system, dnf will override the modular package and will update it to the newest package available in the non-modular repository.

Setup

  1. To start and learn how to list modules, follow the instructions in this test case.

How to test

  1. Update your system.
    dnf update
  2. Enable the nodejs module in stream 10.
    dnf module enable nodejs:10
  3. Install the nodejs module in stream 10.
    dnf module install nodejs:10
  4. Update your system with modular repositories disabled.
    dnf update --disablerepo=\*modular

Expected Results

This test should be considered passed if:

  1. All used commands finish without errors.
  2. The nodejs package will not be updated to a newer version in Step 3 - the same module and the same stream is listed in the list of installed modules.

Optional

Try different modules.