~raharper/curtin/trunk.multipath-debug

« back to all changes in this revision

Viewing changes to tests/vmtests/test_apt_source.py

  • Committer: Christian Ehrhardt
  • Date: 2016-07-26 13:30:35 UTC
  • mto: This revision was merged to the branch mainline in revision 410.
  • Revision ID: christian.ehrhardt@canonical.com-20160726133035-wx113pf33f7q5dxj
change standalong apt command test to be vmtest based

Show diffs side-by-side

added added

removed removed

Lines of Context:
168
168
    conf_file = "examples/tests/apt_source_modify_arches.yaml"
169
169
 
170
170
 
 
171
class TestAptSrcModifyCMD(TestAptSrcModify):
 
172
    """TestAptSrcModify - like TestAptSrcModify, but via standaline command"""
 
173
    conf_file = "examples/tests/apt_source_command.yaml"
 
174
 
 
175
 
171
176
class TestAptSrcSearch(TestAptSrcAbs):
172
177
    """TestAptSrcSearch - tests checking a list of mirror options"""
173
178
    conf_file = "examples/tests/apt_source_search.yaml"
228
233
 
229
234
class XenialTestAptSrcCustom(relbase.xenial, TestAptSrcCustom):
230
235
    """ XenialTestAptSrcCustom
231
 
       Apt_source Test for Xenial with a custom template
 
236
       apt feature Test for Xenial with a custom template
232
237
    """
233
238
    __test__ = True
234
239
 
235
240
 
236
241
class XenialTestAptSrcPreserve(relbase.xenial, TestAptSrcPreserve):
237
242
    """ XenialTestAptSrcPreserve
238
 
       Apt_source Test for Xenial with apt_preserve_sources_list enabled
 
243
       apt feature Test for Xenial with apt_preserve_sources_list enabled
239
244
    """
240
245
    __test__ = True
241
246
 
242
247
 
243
248
class XenialTestAptSrcModify(relbase.xenial, TestAptSrcModify):
244
249
    """ XenialTestAptSrcModify
245
 
        Apt_source Test for Xenial modifying the sources.list of the image
 
250
        apt feature Test for Xenial modifying the sources.list of the image
246
251
    """
247
252
    __test__ = True
248
253
 
249
254
 
250
255
class XenialTestAptSrcSearch(relbase.xenial, TestAptSrcSearch):
251
256
    """ XenialTestAptSrcModify
252
 
        Apt_source Test for Xenial searching for mirrors
 
257
        apt feature Test for Xenial searching for mirrors
253
258
    """
254
259
    __test__ = True
255
260
 
256
261
 
257
262
class XenialTestAptSrcSearchDNS(relbase.xenial, TestAptSrcSearchDNS):
258
263
    """ XenialTestAptSrcModify
259
 
        Apt_source Test for Xenial searching for predefined DNS names
 
264
        apt feature Test for Xenial searching for predefined DNS names
260
265
    """
261
266
    __test__ = True
262
267
 
263
268
 
264
269
class XenialTestAptSrcModifyArches(relbase.xenial, TestAptSrcModifyArches):
265
270
    """ XenialTestAptSrcModifyArches
266
 
        Apt_source Test for Xenial checking per arch mirror specification
 
271
        apt feature Test for Xenial checking per arch mirror specification
267
272
    """
268
273
    __test__ = True
269
274
 
270
275
 
271
276
class XenialTestAptSrcDisablePockets(relbase.xenial, TestAptSrcDisablePockets):
272
277
    """ XenialTestAptSrcDisablePockets
273
 
        Apt_source Test for Xenial disabling a suite
 
278
        apt feature Test for Xenial disabling a suite
 
279
    """
 
280
    __test__ = True
 
281
 
 
282
 
 
283
class XenialTestAptSrcModifyCMD(relbase.xenial, TestAptSrcModifyCMD):
 
284
    """ XenialTestAptSrcModifyCMD
 
285
        apt feature Test for Xenial using the standalone command
274
286
    """
275
287
    __test__ = True