| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373 | import pytestfrom flexmock import flexmockfrom borgmatic.borg.pattern import Pattern, Pattern_source, Pattern_style, Pattern_typefrom borgmatic.hooks.data_source import lvm as moduledef test_get_logical_volumes_filters_by_patterns():    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).and_return(        '''        {            "blockdevices": [                {                   "name": "vgroup-notmounted",                   "path": "/dev/mapper/vgroup-notmounted",                   "mountpoint": null,                   "type": "lvm"                }, {                   "name": "vgroup-lvolume",                   "path": "/dev/mapper/vgroup-lvolume",                   "mountpoint": "/mnt/lvolume",                   "type": "lvm"                }, {                   "name": "vgroup-other",                   "path": "/dev/mapper/vgroup-other",                   "mountpoint": "/mnt/other",                   "type": "lvm"                }, {                   "name": "vgroup-notlvm",                   "path": "/dev/mapper/vgroup-notlvm",                   "mountpoint": "/mnt/notlvm",                   "type": "notlvm"                }            ]        }        '''    )    contained = {        Pattern('/mnt/lvolume', source=Pattern_source.CONFIG),        Pattern('/mnt/lvolume/subdir', source=Pattern_source.CONFIG),    }    flexmock(module.borgmatic.hooks.data_source.snapshot).should_receive(        'get_contained_patterns'    ).with_args(None, contained).never()    flexmock(module.borgmatic.hooks.data_source.snapshot).should_receive(        'get_contained_patterns'    ).with_args('/mnt/lvolume', contained).and_return(        (            Pattern('/mnt/lvolume', source=Pattern_source.CONFIG),            Pattern('/mnt/lvolume/subdir', source=Pattern_source.CONFIG),        )    )    flexmock(module.borgmatic.hooks.data_source.snapshot).should_receive(        'get_contained_patterns'    ).with_args('/mnt/other', contained).and_return(())    flexmock(module.borgmatic.hooks.data_source.snapshot).should_receive(        'get_contained_patterns'    ).with_args('/mnt/notlvm', contained).never()    assert module.get_logical_volumes(        'lsblk',        patterns=(            Pattern('/mnt/lvolume', source=Pattern_source.CONFIG),            Pattern('/mnt/lvolume/subdir', source=Pattern_source.CONFIG),        ),    ) == (        module.Logical_volume(            name='vgroup-lvolume',            device_path='/dev/mapper/vgroup-lvolume',            mount_point='/mnt/lvolume',            contained_patterns=(                Pattern('/mnt/lvolume', source=Pattern_source.CONFIG),                Pattern('/mnt/lvolume/subdir', source=Pattern_source.CONFIG),            ),        ),    )def test_get_logical_volumes_skips_non_root_patterns():    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).and_return(        '''        {            "blockdevices": [                {                   "name": "vgroup-lvolume",                   "path": "/dev/mapper/vgroup-lvolume",                   "mountpoint": "/mnt/lvolume",                   "type": "lvm"                }            ]        }        '''    )    contained = {        Pattern('/mnt/lvolume', type=Pattern_type.EXCLUDE, source=Pattern_source.CONFIG),        Pattern('/mnt/lvolume/subdir', type=Pattern_type.EXCLUDE, source=Pattern_source.CONFIG),    }    flexmock(module.borgmatic.hooks.data_source.snapshot).should_receive(        'get_contained_patterns'    ).with_args(None, contained).never()    flexmock(module.borgmatic.hooks.data_source.snapshot).should_receive(        'get_contained_patterns'    ).with_args('/mnt/lvolume', contained).and_return(        (            Pattern('/mnt/lvolume', type=Pattern_type.EXCLUDE, source=Pattern_source.CONFIG),            Pattern('/mnt/lvolume/subdir', type=Pattern_type.EXCLUDE, source=Pattern_source.CONFIG),        )    )    assert (        module.get_logical_volumes(            'lsblk',            patterns=(                Pattern('/mnt/lvolume', type=Pattern_type.EXCLUDE, source=Pattern_source.CONFIG),                Pattern(                    '/mnt/lvolume/subdir', type=Pattern_type.EXCLUDE, source=Pattern_source.CONFIG                ),            ),        )        == ()    )def test_get_logical_volumes_skips_non_config_patterns():    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).and_return(        '''        {            "blockdevices": [                {                   "name": "vgroup-lvolume",                   "path": "/dev/mapper/vgroup-lvolume",                   "mountpoint": "/mnt/lvolume",                   "type": "lvm"                }            ]        }        '''    )    contained = {        Pattern('/mnt/lvolume', source=Pattern_source.HOOK),        Pattern('/mnt/lvolume/subdir', source=Pattern_source.HOOK),    }    flexmock(module.borgmatic.hooks.data_source.snapshot).should_receive(        'get_contained_patterns'    ).with_args(None, contained).never()    flexmock(module.borgmatic.hooks.data_source.snapshot).should_receive(        'get_contained_patterns'    ).with_args('/mnt/lvolume', contained).and_return(        (            Pattern('/mnt/lvolume', source=Pattern_source.HOOK),            Pattern('/mnt/lvolume/subdir', source=Pattern_source.HOOK),        )    )    assert (        module.get_logical_volumes(            'lsblk',            patterns=(                Pattern('/mnt/lvolume', source=Pattern_source.HOOK),                Pattern('/mnt/lvolume/subdir', source=Pattern_source.HOOK),            ),        )        == ()    )def test_get_logical_volumes_with_invalid_lsblk_json_errors():    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).and_return('{')    flexmock(module.borgmatic.hooks.data_source.snapshot).should_receive(        'get_contained_patterns'    ).never()    with pytest.raises(ValueError):        module.get_logical_volumes(            'lsblk', patterns=(Pattern('/mnt/lvolume'), Pattern('/mnt/lvolume/subdir'))        )def test_get_logical_volumes_with_lsblk_json_missing_keys_errors():    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).and_return('{"block_devices": [{}]}')    flexmock(module.borgmatic.hooks.data_source.snapshot).should_receive(        'get_contained_patterns'    ).never()    with pytest.raises(ValueError):        module.get_logical_volumes(            'lsblk', patterns=(Pattern('/mnt/lvolume'), Pattern('/mnt/lvolume/subdir'))        )def test_snapshot_logical_volume_with_percentage_snapshot_name_uses_lvcreate_extents_flag():    flexmock(module.borgmatic.execute).should_receive('execute_command').with_args(        (            'lvcreate',            '--snapshot',            '--extents',            '10%ORIGIN',            '--permission',            'r',            '--name',            'snap',            '/dev/snap',        ),        output_log_level=object,    )    module.snapshot_logical_volume('lvcreate', 'snap', '/dev/snap', '10%ORIGIN')def test_snapshot_logical_volume_with_non_percentage_snapshot_name_uses_lvcreate_size_flag():    flexmock(module.borgmatic.execute).should_receive('execute_command').with_args(        (            'lvcreate',            '--snapshot',            '--size',            '10TB',            '--permission',            'r',            '--name',            'snap',            '/dev/snap',        ),        output_log_level=object,    )    module.snapshot_logical_volume('lvcreate', 'snap', '/dev/snap', '10TB')@pytest.mark.parametrize(    'pattern,expected_pattern',    (        (            Pattern('/foo/bar/baz'),            Pattern('/run/borgmatic/lvm_snapshots/b33f/./foo/bar/baz'),        ),        (Pattern('/foo/bar'), Pattern('/run/borgmatic/lvm_snapshots/b33f/./foo/bar')),        (            Pattern('^/foo/bar', Pattern_type.INCLUDE, Pattern_style.REGULAR_EXPRESSION),            Pattern(                '^/run/borgmatic/lvm_snapshots/b33f/./foo/bar',                Pattern_type.INCLUDE,                Pattern_style.REGULAR_EXPRESSION,            ),        ),        (            Pattern('/foo/bar', Pattern_type.INCLUDE, Pattern_style.REGULAR_EXPRESSION),            Pattern(                '/run/borgmatic/lvm_snapshots/b33f/./foo/bar',                Pattern_type.INCLUDE,                Pattern_style.REGULAR_EXPRESSION,            ),        ),        (Pattern('/foo'), Pattern('/run/borgmatic/lvm_snapshots/b33f/./foo')),        (Pattern('/'), Pattern('/run/borgmatic/lvm_snapshots/b33f/./')),    ),)def test_make_borg_snapshot_pattern_includes_slashdot_hack_and_stripped_pattern_path(    pattern, expected_pattern):    flexmock(module.hashlib).should_receive('shake_256').and_return(        flexmock(hexdigest=lambda length: 'b33f')    )    assert (        module.make_borg_snapshot_pattern(            pattern, flexmock(mount_point='/something'), '/run/borgmatic'        )        == expected_pattern    )def test_dump_data_sources_snapshots_and_mounts_and_updates_patterns():    config = {'lvm': {}}    patterns = [Pattern('/mnt/lvolume1/subdir'), Pattern('/mnt/lvolume2')]    logical_volumes = (        module.Logical_volume(            name='lvolume1',            device_path='/dev/lvolume1',            mount_point='/mnt/lvolume1',            contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),        ),        module.Logical_volume(            name='lvolume2',            device_path='/dev/lvolume2',            mount_point='/mnt/lvolume2',            contained_patterns=(Pattern('/mnt/lvolume2'),),        ),    )    flexmock(module).should_receive('get_logical_volumes').and_return(logical_volumes)    flexmock(module.os).should_receive('getpid').and_return(1234)    flexmock(module).should_receive('snapshot_logical_volume').with_args(        'lvcreate', 'lvolume1_borgmatic-1234', '/dev/lvolume1', module.DEFAULT_SNAPSHOT_SIZE    ).once()    flexmock(module).should_receive('snapshot_logical_volume').with_args(        'lvcreate', 'lvolume2_borgmatic-1234', '/dev/lvolume2', module.DEFAULT_SNAPSHOT_SIZE    ).once()    flexmock(module).should_receive('get_snapshots').with_args(        'lvs', snapshot_name='lvolume1_borgmatic-1234'    ).and_return(        (module.Snapshot(name='lvolume1_borgmatic-1234', device_path='/dev/lvolume1_snap'),)    )    flexmock(module).should_receive('get_snapshots').with_args(        'lvs', snapshot_name='lvolume2_borgmatic-1234'    ).and_return(        (module.Snapshot(name='lvolume2_borgmatic-1234', device_path='/dev/lvolume2_snap'),)    )    flexmock(module.hashlib).should_receive('shake_256').and_return(        flexmock(hexdigest=lambda length: 'b33f')    )    flexmock(module).should_receive('mount_snapshot').with_args(        'mount', '/dev/lvolume1_snap', '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1'    ).once()    flexmock(module).should_receive('mount_snapshot').with_args(        'mount', '/dev/lvolume2_snap', '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2'    ).once()    flexmock(module).should_receive('make_borg_snapshot_pattern').with_args(        Pattern('/mnt/lvolume1/subdir'), logical_volumes[0], '/run/borgmatic'    ).and_return(Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume1/subdir'))    flexmock(module).should_receive('make_borg_snapshot_pattern').with_args(        Pattern('/mnt/lvolume2'), logical_volumes[1], '/run/borgmatic'    ).and_return(Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume2'))    assert (        module.dump_data_sources(            hook_config=config['lvm'],            config=config,            config_paths=('test.yaml',),            borgmatic_runtime_directory='/run/borgmatic',            patterns=patterns,            dry_run=False,        )        == []    )    assert patterns == [        Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume1/subdir'),        Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume2'),    ]def test_dump_data_sources_with_no_logical_volumes_skips_snapshots():    config = {'lvm': {}}    patterns = [Pattern('/mnt/lvolume1/subdir'), Pattern('/mnt/lvolume2')]    flexmock(module).should_receive('get_logical_volumes').and_return(())    flexmock(module).should_receive('snapshot_logical_volume').never()    flexmock(module).should_receive('mount_snapshot').never()    assert (        module.dump_data_sources(            hook_config=config['lvm'],            config=config,            config_paths=('test.yaml',),            borgmatic_runtime_directory='/run/borgmatic',            patterns=patterns,            dry_run=False,        )        == []    )    assert patterns == [Pattern('/mnt/lvolume1/subdir'), Pattern('/mnt/lvolume2')]def test_dump_data_sources_uses_snapshot_size_for_snapshot():    config = {'lvm': {'snapshot_size': '1000PB'}}    patterns = [Pattern('/mnt/lvolume1/subdir'), Pattern('/mnt/lvolume2')]    logical_volumes = (        module.Logical_volume(            name='lvolume1',            device_path='/dev/lvolume1',            mount_point='/mnt/lvolume1',            contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),        ),        module.Logical_volume(            name='lvolume2',            device_path='/dev/lvolume2',            mount_point='/mnt/lvolume2',            contained_patterns=(Pattern('/mnt/lvolume2'),),        ),    )    flexmock(module).should_receive('get_logical_volumes').and_return(logical_volumes)    flexmock(module.os).should_receive('getpid').and_return(1234)    flexmock(module).should_receive('snapshot_logical_volume').with_args(        'lvcreate',        'lvolume1_borgmatic-1234',        '/dev/lvolume1',        '1000PB',    ).once()    flexmock(module).should_receive('snapshot_logical_volume').with_args(        'lvcreate',        'lvolume2_borgmatic-1234',        '/dev/lvolume2',        '1000PB',    ).once()    flexmock(module).should_receive('get_snapshots').with_args(        'lvs', snapshot_name='lvolume1_borgmatic-1234'    ).and_return(        (module.Snapshot(name='lvolume1_borgmatic-1234', device_path='/dev/lvolume1_snap'),)    )    flexmock(module).should_receive('get_snapshots').with_args(        'lvs', snapshot_name='lvolume2_borgmatic-1234'    ).and_return(        (module.Snapshot(name='lvolume2_borgmatic-1234', device_path='/dev/lvolume2_snap'),)    )    flexmock(module.hashlib).should_receive('shake_256').and_return(        flexmock(hexdigest=lambda length: 'b33f')    )    flexmock(module).should_receive('mount_snapshot').with_args(        'mount', '/dev/lvolume1_snap', '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1'    ).once()    flexmock(module).should_receive('mount_snapshot').with_args(        'mount', '/dev/lvolume2_snap', '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2'    ).once()    flexmock(module).should_receive('make_borg_snapshot_pattern').with_args(        Pattern('/mnt/lvolume1/subdir'), logical_volumes[0], '/run/borgmatic'    ).and_return(Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume1/subdir'))    flexmock(module).should_receive('make_borg_snapshot_pattern').with_args(        Pattern('/mnt/lvolume2'), logical_volumes[1], '/run/borgmatic'    ).and_return(Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume2'))    assert (        module.dump_data_sources(            hook_config=config['lvm'],            config=config,            config_paths=('test.yaml',),            borgmatic_runtime_directory='/run/borgmatic',            patterns=patterns,            dry_run=False,        )        == []    )    assert patterns == [        Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume1/subdir'),        Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume2'),    ]def test_dump_data_sources_uses_custom_commands():    config = {        'lvm': {            'lsblk_command': '/usr/local/bin/lsblk',            'lvcreate_command': '/usr/local/bin/lvcreate',            'lvs_command': '/usr/local/bin/lvs',            'mount_command': '/usr/local/bin/mount',        },    }    patterns = [Pattern('/mnt/lvolume1/subdir'), Pattern('/mnt/lvolume2')]    logical_volumes = (        module.Logical_volume(            name='lvolume1',            device_path='/dev/lvolume1',            mount_point='/mnt/lvolume1',            contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),        ),        module.Logical_volume(            name='lvolume2',            device_path='/dev/lvolume2',            mount_point='/mnt/lvolume2',            contained_patterns=(Pattern('/mnt/lvolume2'),),        ),    )    flexmock(module).should_receive('get_logical_volumes').and_return(logical_volumes)    flexmock(module.os).should_receive('getpid').and_return(1234)    flexmock(module).should_receive('snapshot_logical_volume').with_args(        '/usr/local/bin/lvcreate',        'lvolume1_borgmatic-1234',        '/dev/lvolume1',        module.DEFAULT_SNAPSHOT_SIZE,    ).once()    flexmock(module).should_receive('snapshot_logical_volume').with_args(        '/usr/local/bin/lvcreate',        'lvolume2_borgmatic-1234',        '/dev/lvolume2',        module.DEFAULT_SNAPSHOT_SIZE,    ).once()    flexmock(module).should_receive('get_snapshots').with_args(        '/usr/local/bin/lvs', snapshot_name='lvolume1_borgmatic-1234'    ).and_return(        (module.Snapshot(name='lvolume1_borgmatic-1234', device_path='/dev/lvolume1_snap'),)    )    flexmock(module).should_receive('get_snapshots').with_args(        '/usr/local/bin/lvs', snapshot_name='lvolume2_borgmatic-1234'    ).and_return(        (module.Snapshot(name='lvolume2_borgmatic-1234', device_path='/dev/lvolume2_snap'),)    )    flexmock(module.hashlib).should_receive('shake_256').and_return(        flexmock(hexdigest=lambda length: 'b33f')    )    flexmock(module).should_receive('mount_snapshot').with_args(        '/usr/local/bin/mount',        '/dev/lvolume1_snap',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1',    ).once()    flexmock(module).should_receive('mount_snapshot').with_args(        '/usr/local/bin/mount',        '/dev/lvolume2_snap',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2',    ).once()    flexmock(module).should_receive('make_borg_snapshot_pattern').with_args(        Pattern('/mnt/lvolume1/subdir'), logical_volumes[0], '/run/borgmatic'    ).and_return(Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume1/subdir'))    flexmock(module).should_receive('make_borg_snapshot_pattern').with_args(        Pattern('/mnt/lvolume2'), logical_volumes[1], '/run/borgmatic'    ).and_return(Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume2'))    assert (        module.dump_data_sources(            hook_config=config['lvm'],            config=config,            config_paths=('test.yaml',),            borgmatic_runtime_directory='/run/borgmatic',            patterns=patterns,            dry_run=False,        )        == []    )    assert patterns == [        Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume1/subdir'),        Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume2'),    ]def test_dump_data_sources_with_dry_run_skips_snapshots_and_does_not_touch_patterns():    config = {'lvm': {}}    patterns = [Pattern('/mnt/lvolume1/subdir'), Pattern('/mnt/lvolume2')]    flexmock(module).should_receive('get_logical_volumes').and_return(        (            module.Logical_volume(                name='lvolume1',                device_path='/dev/lvolume1',                mount_point='/mnt/lvolume1',                contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),            ),            module.Logical_volume(                name='lvolume2',                device_path='/dev/lvolume2',                mount_point='/mnt/lvolume2',                contained_patterns=(Pattern('/mnt/lvolume2'),),            ),        )    )    flexmock(module.os).should_receive('getpid').and_return(1234)    flexmock(module).should_receive('snapshot_logical_volume').never()    flexmock(module).should_receive('get_snapshots').with_args(        'lvs', snapshot_name='lvolume1_borgmatic-1234'    ).and_return(        (module.Snapshot(name='lvolume1_borgmatic-1234', device_path='/dev/lvolume1_snap'),)    )    flexmock(module).should_receive('get_snapshots').with_args(        'lvs', snapshot_name='lvolume2_borgmatic-1234'    ).and_return(        (module.Snapshot(name='lvolume2_borgmatic-1234', device_path='/dev/lvolume2_snap'),)    )    flexmock(module).should_receive('mount_snapshot').never()    assert (        module.dump_data_sources(            hook_config=config['lvm'],            config=config,            config_paths=('test.yaml',),            borgmatic_runtime_directory='/run/borgmatic',            patterns=patterns,            dry_run=True,        )        == []    )    assert patterns == [        Pattern('/mnt/lvolume1/subdir'),        Pattern('/mnt/lvolume2'),    ]def test_dump_data_sources_ignores_mismatch_between_given_patterns_and_contained_patterns():    config = {'lvm': {}}    patterns = [Pattern('/hmm')]    logical_volumes = (        module.Logical_volume(            name='lvolume1',            device_path='/dev/lvolume1',            mount_point='/mnt/lvolume1',            contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),        ),        module.Logical_volume(            name='lvolume2',            device_path='/dev/lvolume2',            mount_point='/mnt/lvolume2',            contained_patterns=(Pattern('/mnt/lvolume2'),),        ),    )    flexmock(module).should_receive('get_logical_volumes').and_return(logical_volumes)    flexmock(module.os).should_receive('getpid').and_return(1234)    flexmock(module).should_receive('snapshot_logical_volume').with_args(        'lvcreate', 'lvolume1_borgmatic-1234', '/dev/lvolume1', module.DEFAULT_SNAPSHOT_SIZE    ).once()    flexmock(module).should_receive('snapshot_logical_volume').with_args(        'lvcreate', 'lvolume2_borgmatic-1234', '/dev/lvolume2', module.DEFAULT_SNAPSHOT_SIZE    ).once()    flexmock(module).should_receive('get_snapshots').with_args(        'lvs', snapshot_name='lvolume1_borgmatic-1234'    ).and_return(        (module.Snapshot(name='lvolume1_borgmatic-1234', device_path='/dev/lvolume1_snap'),)    )    flexmock(module).should_receive('get_snapshots').with_args(        'lvs', snapshot_name='lvolume2_borgmatic-1234'    ).and_return(        (module.Snapshot(name='lvolume2_borgmatic-1234', device_path='/dev/lvolume2_snap'),)    )    flexmock(module.hashlib).should_receive('shake_256').and_return(        flexmock(hexdigest=lambda length: 'b33f')    )    flexmock(module).should_receive('mount_snapshot').with_args(        'mount', '/dev/lvolume1_snap', '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1'    ).once()    flexmock(module).should_receive('mount_snapshot').with_args(        'mount', '/dev/lvolume2_snap', '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2'    ).once()    flexmock(module).should_receive('make_borg_snapshot_pattern').with_args(        Pattern('/mnt/lvolume1/subdir'), logical_volumes[0], '/run/borgmatic'    ).and_return(Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume1/subdir'))    flexmock(module).should_receive('make_borg_snapshot_pattern').with_args(        Pattern('/mnt/lvolume2'), logical_volumes[1], '/run/borgmatic'    ).and_return(Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume2'))    assert (        module.dump_data_sources(            hook_config=config['lvm'],            config=config,            config_paths=('test.yaml',),            borgmatic_runtime_directory='/run/borgmatic',            patterns=patterns,            dry_run=False,        )        == []    )    assert patterns == [        Pattern('/hmm'),        Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume1/subdir'),        Pattern('/run/borgmatic/lvm_snapshots/b33f/./mnt/lvolume2'),    ]def test_dump_data_sources_with_missing_snapshot_errors():    config = {'lvm': {}}    patterns = [Pattern('/mnt/lvolume1/subdir'), Pattern('/mnt/lvolume2')]    flexmock(module).should_receive('get_logical_volumes').and_return(        (            module.Logical_volume(                name='lvolume1',                device_path='/dev/lvolume1',                mount_point='/mnt/lvolume1',                contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),            ),            module.Logical_volume(                name='lvolume2',                device_path='/dev/lvolume2',                mount_point='/mnt/lvolume2',                contained_patterns=(Pattern('/mnt/lvolume2'),),            ),        )    )    flexmock(module.os).should_receive('getpid').and_return(1234)    flexmock(module).should_receive('snapshot_logical_volume').with_args(        'lvcreate', 'lvolume1_borgmatic-1234', '/dev/lvolume1', module.DEFAULT_SNAPSHOT_SIZE    ).once()    flexmock(module).should_receive('snapshot_logical_volume').with_args(        'lvcreate', 'lvolume2_borgmatic-1234', '/dev/lvolume2', module.DEFAULT_SNAPSHOT_SIZE    ).never()    flexmock(module).should_receive('get_snapshots').with_args(        'lvs', snapshot_name='lvolume1_borgmatic-1234'    ).and_return(())    flexmock(module).should_receive('get_snapshots').with_args(        'lvs', snapshot_name='lvolume2_borgmatic-1234'    ).never()    flexmock(module).should_receive('mount_snapshot').never()    with pytest.raises(ValueError):        module.dump_data_sources(            hook_config=config['lvm'],            config=config,            config_paths=('test.yaml',),            borgmatic_runtime_directory='/run/borgmatic',            patterns=patterns,            dry_run=False,        )def test_get_snapshots_lists_all_snapshots():    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).and_return(        '''          {              "report": [                  {                      "lv": [                          {"lv_name": "snap1", "lv_path": "/dev/snap1"},                          {"lv_name": "snap2", "lv_path": "/dev/snap2"}                      ]                  }              ],              "log": [              ]          }        '''    )    assert module.get_snapshots('lvs') == (        module.Snapshot('snap1', '/dev/snap1'),        module.Snapshot('snap2', '/dev/snap2'),    )def test_get_snapshots_with_snapshot_name_lists_just_that_snapshot():    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).and_return(        '''          {              "report": [                  {                      "lv": [                          {"lv_name": "snap1", "lv_path": "/dev/snap1"},                          {"lv_name": "snap2", "lv_path": "/dev/snap2"}                      ]                  }              ],              "log": [              ]          }        '''    )    assert module.get_snapshots('lvs', snapshot_name='snap2') == (        module.Snapshot('snap2', '/dev/snap2'),    )def test_get_snapshots_with_invalid_lvs_json_errors():    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).and_return('{')    with pytest.raises(ValueError):        assert module.get_snapshots('lvs')def test_get_snapshots_with_lvs_json_missing_report_errors():    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).and_return(        '''          {              "report": [],              "log": [              ]          }        '''    )    with pytest.raises(ValueError):        assert module.get_snapshots('lvs')def test_get_snapshots_with_lvs_json_missing_keys_errors():    flexmock(module.borgmatic.execute).should_receive(        'execute_command_and_capture_output'    ).and_return(        '''          {              "report": [                  {                      "lv": [                          {}                      ]                  }              ],              "log": [              ]          }        '''    )    with pytest.raises(ValueError):        assert module.get_snapshots('lvs')def test_remove_data_source_dumps_unmounts_and_remove_snapshots():    config = {'lvm': {}}    flexmock(module).should_receive('get_logical_volumes').and_return(        (            module.Logical_volume(                name='lvolume1',                device_path='/dev/lvolume1',                mount_point='/mnt/lvolume1',                contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),            ),            module.Logical_volume(                name='lvolume2',                device_path='/dev/lvolume2',                mount_point='/mnt/lvolume2',                contained_patterns=(Pattern('/mnt/lvolume2'),),            ),        )    )    flexmock(module.borgmatic.config.paths).should_receive(        'replace_temporary_subdirectory_with_glob'    ).and_return('/run/borgmatic')    flexmock(module.glob).should_receive('glob').replace_with(        lambda path: [path.replace('*', 'b33f')]    )    flexmock(module.os.path).should_receive('isdir').and_return(True)    flexmock(module.os).should_receive('listdir').and_return(['file.txt'])    flexmock(module.shutil).should_receive('rmtree')    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1',    ).once()    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2',    ).once()    flexmock(module).should_receive('get_snapshots').and_return(        (            module.Snapshot('lvolume1_borgmatic-1234', '/dev/lvolume1'),            module.Snapshot('lvolume2_borgmatic-1234', '/dev/lvolume2'),            module.Snapshot('nonborgmatic', '/dev/nonborgmatic'),        ),    )    flexmock(module).should_receive('remove_snapshot').with_args('lvremove', '/dev/lvolume1').once()    flexmock(module).should_receive('remove_snapshot').with_args('lvremove', '/dev/lvolume2').once()    flexmock(module).should_receive('remove_snapshot').with_args(        'nonborgmatic', '/dev/nonborgmatic'    ).never()    module.remove_data_source_dumps(        hook_config=config['lvm'],        config=config,        borgmatic_runtime_directory='/run/borgmatic',        dry_run=False,    )def test_remove_data_source_dumps_bails_for_missing_lvm_configuration():    flexmock(module).should_receive('get_logical_volumes').never()    flexmock(module.borgmatic.config.paths).should_receive(        'replace_temporary_subdirectory_with_glob'    ).never()    flexmock(module).should_receive('unmount_snapshot').never()    flexmock(module).should_receive('remove_snapshot').never()    module.remove_data_source_dumps(        hook_config=None,        config={'source_directories': '/mnt/lvolume'},        borgmatic_runtime_directory='/run/borgmatic',        dry_run=False,    )def test_remove_data_source_dumps_bails_for_missing_lsblk_command():    config = {'lvm': {}}    flexmock(module).should_receive('get_logical_volumes').and_raise(FileNotFoundError)    flexmock(module.borgmatic.config.paths).should_receive(        'replace_temporary_subdirectory_with_glob'    ).never()    flexmock(module).should_receive('unmount_snapshot').never()    flexmock(module).should_receive('remove_snapshot').never()    module.remove_data_source_dumps(        hook_config=config['lvm'],        config=config,        borgmatic_runtime_directory='/run/borgmatic',        dry_run=False,    )def test_remove_data_source_dumps_bails_for_lsblk_command_error():    config = {'lvm': {}}    flexmock(module).should_receive('get_logical_volumes').and_raise(        module.subprocess.CalledProcessError(1, 'wtf')    )    flexmock(module.borgmatic.config.paths).should_receive(        'replace_temporary_subdirectory_with_glob'    ).never()    flexmock(module).should_receive('unmount_snapshot').never()    flexmock(module).should_receive('remove_snapshot').never()    module.remove_data_source_dumps(        hook_config=config['lvm'],        config=config,        borgmatic_runtime_directory='/run/borgmatic',        dry_run=False,    )def test_remove_data_source_dumps_with_missing_snapshot_directory_skips_unmount():    config = {'lvm': {}}    flexmock(module).should_receive('get_logical_volumes').and_return(        (            module.Logical_volume(                name='lvolume1',                device_path='/dev/lvolume1',                mount_point='/mnt/lvolume1',                contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),            ),            module.Logical_volume(                name='lvolume2',                device_path='/dev/lvolume2',                mount_point='/mnt/lvolume2',                contained_patterns=(Pattern('/mnt/lvolume2'),),            ),        )    )    flexmock(module.borgmatic.config.paths).should_receive(        'replace_temporary_subdirectory_with_glob'    ).and_return('/run/borgmatic')    flexmock(module.glob).should_receive('glob').replace_with(        lambda path: [path.replace('*', 'b33f')]    )    flexmock(module.os.path).should_receive('isdir').with_args(        '/run/borgmatic/lvm_snapshots/b33f'    ).and_return(False)    flexmock(module.shutil).should_receive('rmtree').never()    flexmock(module).should_receive('unmount_snapshot').never()    flexmock(module).should_receive('get_snapshots').and_return(        (            module.Snapshot('lvolume1_borgmatic-1234', '/dev/lvolume1'),            module.Snapshot('lvolume2_borgmatic-1234', '/dev/lvolume2'),        ),    )    flexmock(module).should_receive('remove_snapshot').with_args('lvremove', '/dev/lvolume1').once()    flexmock(module).should_receive('remove_snapshot').with_args('lvremove', '/dev/lvolume2').once()    module.remove_data_source_dumps(        hook_config=config['lvm'],        config=config,        borgmatic_runtime_directory='/run/borgmatic',        dry_run=False,    )def test_remove_data_source_dumps_with_missing_snapshot_mount_path_skips_unmount():    config = {'lvm': {}}    flexmock(module).should_receive('get_logical_volumes').and_return(        (            module.Logical_volume(                name='lvolume1',                device_path='/dev/lvolume1',                mount_point='/mnt/lvolume1',                contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),            ),            module.Logical_volume(                name='lvolume2',                device_path='/dev/lvolume2',                mount_point='/mnt/lvolume2',                contained_patterns=(Pattern('/mnt/lvolume2'),),            ),        )    )    flexmock(module.borgmatic.config.paths).should_receive(        'replace_temporary_subdirectory_with_glob'    ).and_return('/run/borgmatic')    flexmock(module.glob).should_receive('glob').replace_with(        lambda path: [path.replace('*', 'b33f')]    )    flexmock(module.os.path).should_receive('isdir').with_args(        '/run/borgmatic/lvm_snapshots/b33f'    ).and_return(True)    flexmock(module.os.path).should_receive('isdir').with_args(        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1'    ).and_return(False)    flexmock(module.os.path).should_receive('isdir').with_args(        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2'    ).and_return(True)    flexmock(module.os).should_receive('listdir').and_return(['file.txt'])    flexmock(module.shutil).should_receive('rmtree')    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1',    ).never()    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2',    ).once()    flexmock(module).should_receive('get_snapshots').and_return(        (            module.Snapshot('lvolume1_borgmatic-1234', '/dev/lvolume1'),            module.Snapshot('lvolume2_borgmatic-1234', '/dev/lvolume2'),        ),    )    flexmock(module).should_receive('remove_snapshot').with_args('lvremove', '/dev/lvolume1').once()    flexmock(module).should_receive('remove_snapshot').with_args('lvremove', '/dev/lvolume2').once()    module.remove_data_source_dumps(        hook_config=config['lvm'],        config=config,        borgmatic_runtime_directory='/run/borgmatic',        dry_run=False,    )def test_remove_data_source_dumps_with_empty_snapshot_mount_path_skips_unmount():    config = {'lvm': {}}    flexmock(module).should_receive('get_logical_volumes').and_return(        (            module.Logical_volume(                name='lvolume1',                device_path='/dev/lvolume1',                mount_point='/mnt/lvolume1',                contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),            ),            module.Logical_volume(                name='lvolume2',                device_path='/dev/lvolume2',                mount_point='/mnt/lvolume2',                contained_patterns=(Pattern('/mnt/lvolume2'),),            ),        )    )    flexmock(module.borgmatic.config.paths).should_receive(        'replace_temporary_subdirectory_with_glob'    ).and_return('/run/borgmatic')    flexmock(module.glob).should_receive('glob').replace_with(        lambda path: [path.replace('*', 'b33f')]    )    flexmock(module.os.path).should_receive('isdir').with_args(        '/run/borgmatic/lvm_snapshots/b33f'    ).and_return(True)    flexmock(module.os.path).should_receive('isdir').with_args(        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1'    ).and_return(True)    flexmock(module.os).should_receive('listdir').with_args(        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1'    ).and_return([])    flexmock(module.os.path).should_receive('isdir').with_args(        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2'    ).and_return(True)    flexmock(module.os).should_receive('listdir').with_args(        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2'    ).and_return(['file.txt'])    flexmock(module.shutil).should_receive('rmtree')    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1',    ).never()    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2',    ).once()    flexmock(module).should_receive('get_snapshots').and_return(        (            module.Snapshot('lvolume1_borgmatic-1234', '/dev/lvolume1'),            module.Snapshot('lvolume2_borgmatic-1234', '/dev/lvolume2'),        ),    )    flexmock(module).should_receive('remove_snapshot').with_args('lvremove', '/dev/lvolume1').once()    flexmock(module).should_receive('remove_snapshot').with_args('lvremove', '/dev/lvolume2').once()    module.remove_data_source_dumps(        hook_config=config['lvm'],        config=config,        borgmatic_runtime_directory='/run/borgmatic',        dry_run=False,    )def test_remove_data_source_dumps_with_successful_mount_point_removal_skips_unmount():    config = {'lvm': {}}    flexmock(module).should_receive('get_logical_volumes').and_return(        (            module.Logical_volume(                name='lvolume1',                device_path='/dev/lvolume1',                mount_point='/mnt/lvolume1',                contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),            ),            module.Logical_volume(                name='lvolume2',                device_path='/dev/lvolume2',                mount_point='/mnt/lvolume2',                contained_patterns=(Pattern('/mnt/lvolume2'),),            ),        )    )    flexmock(module.borgmatic.config.paths).should_receive(        'replace_temporary_subdirectory_with_glob'    ).and_return('/run/borgmatic')    flexmock(module.glob).should_receive('glob').replace_with(        lambda path: [path.replace('*', 'b33f')]    )    flexmock(module.os.path).should_receive('isdir').with_args(        '/run/borgmatic/lvm_snapshots/b33f'    ).and_return(True)    flexmock(module.os.path).should_receive('isdir').with_args(        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1'    ).and_return(True).and_return(False)    flexmock(module.os.path).should_receive('isdir').with_args(        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2'    ).and_return(True).and_return(True)    flexmock(module.os).should_receive('listdir').and_return(['file.txt'])    flexmock(module.shutil).should_receive('rmtree')    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1',    ).never()    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2',    ).once()    flexmock(module).should_receive('get_snapshots').and_return(        (            module.Snapshot('lvolume1_borgmatic-1234', '/dev/lvolume1'),            module.Snapshot('lvolume2_borgmatic-1234', '/dev/lvolume2'),        ),    )    flexmock(module).should_receive('remove_snapshot').with_args('lvremove', '/dev/lvolume1').once()    flexmock(module).should_receive('remove_snapshot').with_args('lvremove', '/dev/lvolume2').once()    module.remove_data_source_dumps(        hook_config=config['lvm'],        config=config,        borgmatic_runtime_directory='/run/borgmatic',        dry_run=False,    )def test_remove_data_source_dumps_bails_for_missing_umount_command():    config = {'lvm': {}}    flexmock(module).should_receive('get_logical_volumes').and_return(        (            module.Logical_volume(                name='lvolume1',                device_path='/dev/lvolume1',                mount_point='/mnt/lvolume1',                contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),            ),            module.Logical_volume(                name='lvolume2',                device_path='/dev/lvolume2',                mount_point='/mnt/lvolume2',                contained_patterns=(Pattern('/mnt/lvolume2'),),            ),        )    )    flexmock(module.borgmatic.config.paths).should_receive(        'replace_temporary_subdirectory_with_glob'    ).and_return('/run/borgmatic')    flexmock(module.glob).should_receive('glob').replace_with(        lambda path: [path.replace('*', 'b33f')]    )    flexmock(module.os.path).should_receive('isdir').and_return(True)    flexmock(module.os).should_receive('listdir').and_return(['file.txt'])    flexmock(module.shutil).should_receive('rmtree')    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1',    ).and_raise(FileNotFoundError)    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2',    ).never()    flexmock(module).should_receive('get_snapshots').never()    flexmock(module).should_receive('remove_snapshot').never()    module.remove_data_source_dumps(        hook_config=config['lvm'],        config=config,        borgmatic_runtime_directory='/run/borgmatic',        dry_run=False,    )def test_remove_data_source_dumps_swallows_umount_command_error():    config = {'lvm': {}}    flexmock(module).should_receive('get_logical_volumes').and_return(        (            module.Logical_volume(                name='lvolume1',                device_path='/dev/lvolume1',                mount_point='/mnt/lvolume1',                contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),            ),            module.Logical_volume(                name='lvolume2',                device_path='/dev/lvolume2',                mount_point='/mnt/lvolume2',                contained_patterns=(Pattern('/mnt/lvolume2'),),            ),        )    )    flexmock(module.borgmatic.config.paths).should_receive(        'replace_temporary_subdirectory_with_glob'    ).and_return('/run/borgmatic')    flexmock(module.glob).should_receive('glob').replace_with(        lambda path: [path.replace('*', 'b33f')]    )    flexmock(module.os.path).should_receive('isdir').and_return(True)    flexmock(module.os).should_receive('listdir').and_return(['file.txt'])    flexmock(module.shutil).should_receive('rmtree')    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1',    ).and_raise(module.subprocess.CalledProcessError(1, 'wtf'))    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2',    ).once()    flexmock(module).should_receive('get_snapshots').and_return(        (            module.Snapshot('lvolume1_borgmatic-1234', '/dev/lvolume1'),            module.Snapshot('lvolume2_borgmatic-1234', '/dev/lvolume2'),        ),    )    flexmock(module).should_receive('remove_snapshot').with_args('lvremove', '/dev/lvolume1').once()    flexmock(module).should_receive('remove_snapshot').with_args('lvremove', '/dev/lvolume2').once()    module.remove_data_source_dumps(        hook_config=config['lvm'],        config=config,        borgmatic_runtime_directory='/run/borgmatic',        dry_run=False,    )def test_remove_data_source_dumps_bails_for_missing_lvs_command():    config = {'lvm': {}}    flexmock(module).should_receive('get_logical_volumes').and_return(        (            module.Logical_volume(                name='lvolume1',                device_path='/dev/lvolume1',                mount_point='/mnt/lvolume1',                contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),            ),            module.Logical_volume(                name='lvolume2',                device_path='/dev/lvolume2',                mount_point='/mnt/lvolume2',                contained_patterns=(Pattern('/mnt/lvolume2'),),            ),        )    )    flexmock(module.borgmatic.config.paths).should_receive(        'replace_temporary_subdirectory_with_glob'    ).and_return('/run/borgmatic')    flexmock(module.glob).should_receive('glob').replace_with(        lambda path: [path.replace('*', 'b33f')]    )    flexmock(module.os.path).should_receive('isdir').and_return(True)    flexmock(module.os).should_receive('listdir').and_return(['file.txt'])    flexmock(module.shutil).should_receive('rmtree')    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1',    ).once()    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2',    ).once()    flexmock(module).should_receive('get_snapshots').and_raise(FileNotFoundError)    flexmock(module).should_receive('remove_snapshot').never()    module.remove_data_source_dumps(        hook_config=config['lvm'],        config=config,        borgmatic_runtime_directory='/run/borgmatic',        dry_run=False,    )def test_remove_data_source_dumps_bails_for_lvs_command_error():    config = {'lvm': {}}    flexmock(module).should_receive('get_logical_volumes').and_return(        (            module.Logical_volume(                name='lvolume1',                device_path='/dev/lvolume1',                mount_point='/mnt/lvolume1',                contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),            ),            module.Logical_volume(                name='lvolume2',                device_path='/dev/lvolume2',                mount_point='/mnt/lvolume2',                contained_patterns=(Pattern('/mnt/lvolume2'),),            ),        )    )    flexmock(module.borgmatic.config.paths).should_receive(        'replace_temporary_subdirectory_with_glob'    ).and_return('/run/borgmatic')    flexmock(module.glob).should_receive('glob').replace_with(        lambda path: [path.replace('*', 'b33f')]    )    flexmock(module.os.path).should_receive('isdir').and_return(True)    flexmock(module.os).should_receive('listdir').and_return(['file.txt'])    flexmock(module.shutil).should_receive('rmtree')    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume1',    ).once()    flexmock(module).should_receive('unmount_snapshot').with_args(        'umount',        '/run/borgmatic/lvm_snapshots/b33f/mnt/lvolume2',    ).once()    flexmock(module).should_receive('get_snapshots').and_raise(        module.subprocess.CalledProcessError(1, 'wtf')    )    flexmock(module).should_receive('remove_snapshot').never()    module.remove_data_source_dumps(        hook_config=config['lvm'],        config=config,        borgmatic_runtime_directory='/run/borgmatic',        dry_run=False,    )def test_remove_data_source_with_dry_run_skips_snapshot_unmount_and_delete():    config = {'lvm': {}}    flexmock(module).should_receive('get_logical_volumes').and_return(        (            module.Logical_volume(                name='lvolume1',                device_path='/dev/lvolume1',                mount_point='/mnt/lvolume1',                contained_patterns=(Pattern('/mnt/lvolume1/subdir'),),            ),            module.Logical_volume(                name='lvolume2',                device_path='/dev/lvolume2',                mount_point='/mnt/lvolume2',                contained_patterns=(Pattern('/mnt/lvolume2'),),            ),        )    )    flexmock(module.borgmatic.config.paths).should_receive(        'replace_temporary_subdirectory_with_glob'    ).and_return('/run/borgmatic')    flexmock(module.glob).should_receive('glob').replace_with(lambda path: [path])    flexmock(module.os.path).should_receive('isdir').and_return(True)    flexmock(module.os).should_receive('listdir').and_return(['file.txt'])    flexmock(module.shutil).should_receive('rmtree').never()    flexmock(module).should_receive('unmount_snapshot').never()    flexmock(module).should_receive('get_snapshots').and_return(        (            module.Snapshot('lvolume1_borgmatic-1234', '/dev/lvolume1'),            module.Snapshot('lvolume2_borgmatic-1234', '/dev/lvolume2'),            module.Snapshot('nonborgmatic', '/dev/nonborgmatic'),        ),    ).once()    flexmock(module).should_receive('remove_snapshot').never()    module.remove_data_source_dumps(        hook_config=config['lvm'],        config=config,        borgmatic_runtime_directory='/run/borgmatic',        dry_run=True,    )
 |