1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639
|
# vim: ts=4:sw=4:expandtab
# -*- coding: UTF-8 -*-
# BleachBit
# Copyright (C) 2008-2025 Andrew Ziem
# https://www.bleachbit.org
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
Test case for module Windows
"""
from tests import common
from bleachbit import FileUtilities, General
from bleachbit.Command import Delete, Function
from bleachbit.FileUtilities import extended_path, extended_path_undo
from bleachbit.Windows import (
delete_locked_file,
delete_registry_key,
delete_registry_value,
delete_updates,
is_service_running,
run_net_service_command,
detect_registry_key,
empty_recycle_bin,
get_clipboard_paths,
get_fixed_drives,
get_font_conf_file,
get_known_folder_path,
get_recycle_bin,
get_windows_version,
is_junction,
is_process_running,
move_to_recycle_bin,
parse_windows_build,
path_on_network,
set_environ,
setup_environment,
shell_change_notify,
split_registry_key
)
from bleachbit import logger
import os
import platform
import shutil
import sys
import tempfile
from decimal import Decimal
import time
if 'win32' == sys.platform:
import pywintypes
import win32api
import winreg
from win32com.shell import shell
def put_files_into_recycle_bin():
"""Put a file and a folder into the recycle bin"""
# make a file and move it to the recycle bin
tests = ('regular', 'unicode-emdash-u\u2014', 'long' + 'x' * 100)
for test in tests:
(fd, filename) = tempfile.mkstemp(
prefix='bleachbit-recycle-file', suffix=test)
os.close(fd)
move_to_recycle_bin(filename)
# make a folder and move it to the recycle bin
dirname = tempfile.mkdtemp(prefix='bleachbit-recycle-folder')
common.touch_file(os.path.join(dirname, 'file'))
move_to_recycle_bin(dirname)
@common.skipUnlessWindows
class WindowsTestCase(common.BleachbitTestCase):
"""Test case for module Windows"""
def skipUnlessAdmin(self):
if not shell.IsUserAnAdmin():
self.skipTest('requires administrator privileges')
def test_get_recycle_bin(self):
"""Unit test for get_recycle_bin"""
for f in get_recycle_bin():
self.assertLExists(extended_path(f))
@common.skipUnlessDestructive
def test_get_recycle_bin_destructive(self):
"""Unit test the destructive part of get_recycle_bin"""
put_files_into_recycle_bin()
# clear recycle bin
counter = 0
for f in get_recycle_bin():
counter += 1
FileUtilities.delete(f)
self.assertGreaterEqual(counter, 3, 'deleted %d' % counter)
# now it should be empty
for _f in get_recycle_bin():
self.fail('recycle bin should be empty, but it is not')
def _test_link_helper(self, mklink_option, clear_recycle_bin):
"""Helper function for testing for links with is_junction() and
get_recycle_bin()
It gets called four times for the combinations of the two
parameters. It's called by four unit tests for accounting
purposes. In other words, we don't want to count a test as
skipped if part of it succeeded.
mklink /j = directory junction
directory junction does not require administrator privileges
mklink /d=directory symbolic link
requires administrator privileges
"""
if mklink_option == '/d':
self.skipUnlessAdmin()
# make a normal directory with a file in it
target_dir = os.path.join(self.tempdir, 'target_dir')
os.mkdir(target_dir)
self.assertExists(target_dir)
self.assertFalse(is_junction(target_dir))
from random import randint
canary_fn = os.path.join(
target_dir, 'do_not_delete%d' % randint(1000, 9999))
common.touch_file(canary_fn)
self.assertExists(canary_fn)
self.assertFalse(is_junction(canary_fn))
# make a normal directory to hold a link
container_dir = os.path.join(self.tempdir, 'container_dir')
os.mkdir(container_dir)
self.assertExists(container_dir)
self.assertFalse(is_junction(container_dir))
# create the link
link_pathname = os.path.join(container_dir, 'link')
args = ('cmd', '/c', 'mklink', mklink_option,
link_pathname, target_dir)
from bleachbit.General import run_external
(rc, stdout, stderr) = run_external(args)
self.assertEqual(rc, 0, stderr)
self.assertExists(link_pathname)
self.assertTrue(is_junction(link_pathname))
# put the link in the recycle bin
move_to_recycle_bin(container_dir)
def cleanup_dirs():
shutil.rmtree(container_dir, True)
self.assertNotExists(container_dir)
shutil.rmtree(target_dir, True)
if not clear_recycle_bin:
cleanup_dirs()
return
# clear the recycle bin
for f in get_recycle_bin():
FileUtilities.delete(f, shred=False)
# verify the canary is still there
self.assertExists(canary_fn)
# clean up
cleanup_dirs()
def test_link_junction_no_clear(self):
"""Unit test for directory junctions without clearing recycle bin"""
self._test_link_helper('/j', False)
def test_link_junction_clear(self):
"""Unit test for directory junctions with clearing recycle bin"""
self._test_link_helper('/j', True)
def test_link_symlink_no_clear(self):
"""Unit test for directory symlink without clearing recycle bin"""
self._test_link_helper('/d', False)
def test_link_symlink_clear(self):
"""Unit test for directory symlink with clearing recycle bin"""
self._test_link_helper('/d', True)
def test_delete_locked_file(self):
"""Unit test for delete_locked_file"""
tests = ('regular', 'unicode-emdash-u\u2014', 'long' + 'x' * 100)
for test in tests:
f = tempfile.NamedTemporaryFile(
prefix='bleachbit-delete-locked-file', suffix=test,
delete=False)
pathname = f.name
f.close()
import time
time.sleep(5) # avoid race condition
self.assertExists(pathname)
logger.debug('delete_locked_file(%s) ' % pathname)
if not shell.IsUserAnAdmin():
with self.assertRaises(WindowsError):
delete_locked_file(pathname)
else:
try:
delete_locked_file(pathname)
except WindowsError:
logger.exception(
'delete_locked_file() threw an error, which may be a false positive')
self.assertExists(pathname)
logger.info('reboot Windows and check the three files are deleted')
def test_delete_registry_key(self):
"""Unit test for delete_registry_key"""
# (return value, key, really_delete)
tests = ((False, 'HKCU\\Software\\BleachBit\\DoesNotExist', False, ),
(False, 'HKCU\\Software\\BleachBit\\DoesNotExist', True, ),
(True, 'HKCU\\Software\\BleachBit\\DeleteThisKey', False, ),
(True, 'HKCU\\Software\\BleachBit\\DeleteThisKey', True, ), )
# create a nested key
key = 'Software\\BleachBit\\DeleteThisKey'
subkey = key + '\\AndThisKey'
hkey = winreg.CreateKey(winreg.HKEY_CURRENT_USER, subkey)
hkey.Close()
# test
for test in tests:
rc = test[0]
key = test[1]
really_delete = test[2]
return_value = delete_registry_key(key, really_delete)
self.assertEqual(rc, return_value)
if really_delete:
self.assertFalse(detect_registry_key(key))
# Test Unicode key. In BleachBit 0.7.3 this scenario would lead to
# the error (bug 537109)
# UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position
# 11: ordinal not in range(128)
key = r'Software\\BleachBit\\DeleteThisKey'
hkey = winreg.CreateKey(
winreg.HKEY_CURRENT_USER, key + r'\\AndThisKey-Ö')
hkey.Close()
return_value = delete_registry_key('HKCU\\' + key, True)
self.assertTrue(return_value)
return_value = delete_registry_key('HKCU\\' + key, True)
self.assertFalse(return_value)
def test_delete_updates(self):
"""Unit test for delete_updates
As a preview, this does not modify services or delete files.
"""
if not shell.IsUserAnAdmin():
# It should return None without doing any work.
for _ in delete_updates():
pass
return
counter = 0
for cmd in delete_updates():
counter += 1
self.assertIsInstance(cmd, (Delete, Function))
logger.debug('delete_updates() returned %s commands', f'{counter:,}')
def test_is_service_running(self):
"""Unit test for is_service_running()"""
# RPC is always running.
self.assertTrue(is_service_running('rpcss'))
# Windows Update is sometimes running.
self.assertIsInstance(is_service_running('wuauserv'), bool)
# Non-existent service should raise an error.
with self.assertRaises(pywintypes.error):
is_service_running('does_not_exist')
# None should raise an error.
with self.assertRaises(AssertionError):
is_service_running(None)
@common.skipUnlessDestructive
def test_run_net_service_command(self):
"""Integration test for run_net_service_command().
Actually stop/start Windows Update service.
spooler (Print Spooler) is often on by default and has no dependencies.
Windows Audio Endpoint Builder (AudioEndpointBuilder) is often on
by default and depends on audiosrv (Windows Audio).
Requires admin.
"""
if not shell.IsUserAnAdmin():
self.skipTest('requires administrator privileges')
for service in ('AudioEndpointBuilder', 'spooler'):
initial_running = is_service_running(service)
try:
# Stop service
run_net_service_command(service, False)
self.assertFalse(is_service_running(service))
if service == 'AudioEndpointBuilder':
self.assertFalse(is_service_running('audiosrv'))
# Stop again
run_net_service_command(service, False)
self.assertFalse(is_service_running(service))
# Start service
run_net_service_command(service, True)
self.assertTrue(is_service_running(service))
# Start again
run_net_service_command(service, True)
self.assertTrue(is_service_running(service))
finally:
# Restore initial state
run_net_service_command(service, initial_running)
self.assertEqual(initial_running, is_service_running(service))
def test_run_net_service_command_not_admin(self):
"""Test as run_net_service_command() as not admin user"""
if shell.IsUserAnAdmin():
self.skipTest('requires non-admin user')
service = 'wuauserv'
initial_running = is_service_running(service)
for start in (True, False):
with self.assertRaises(RuntimeError):
run_net_service_command(service, start)
self.assertEqual(is_service_running(service), initial_running)
def test_run_net_service_command_invalid_service(self):
"""Test as run_net_service_command() with invalid service"""
for service in ('does_not_exist', None):
for start in (True, False):
with self.subTest(service=service, start=start):
with self.assertRaises((AssertionError, RuntimeError)):
run_net_service_command(service, start)
def test_delete_registry_value(self):
"""Unit test for delete_registry_value"""
#
# test: value does exist
#
# create a name-value pair
key = 'Software\\BleachBit'
hkey = winreg.CreateKey(winreg.HKEY_CURRENT_USER, key)
value_name = 'delete_this_value_name'
winreg.SetValueEx(
hkey, value_name, 0, winreg.REG_SZ, 'delete this value')
hkey.Close()
# delete and confirm
self.assertTrue(
delete_registry_value('HKCU\\' + key, value_name, False))
self.assertTrue(
delete_registry_value('HKCU\\' + key, value_name, True))
self.assertFalse(
delete_registry_value('HKCU\\' + key, value_name, False))
self.assertFalse(
delete_registry_value('HKCU\\' + key, value_name, True))
#
# test: value does not exist
#
self.assertFalse(delete_registry_value(
'HKCU\\' + key, 'doesnotexist', False))
self.assertFalse(delete_registry_value(
'HKCU\\' + key, 'doesnotexist', True))
self.assertFalse(delete_registry_value(
'HKCU\\doesnotexist', value_name, False))
self.assertFalse(delete_registry_value(
'HKCU\\doesnotexist', value_name, True))
def test_detect_registry_key(self):
"""Test for detect_registry_key()"""
self.assertTrue(detect_registry_key('HKCU\\Software\\Microsoft\\'))
self.assertTrue(not detect_registry_key(
'HKCU\\Software\\DoesNotExist'))
def test_get_clipboard_paths(self):
"""Unit test for get_clipboard_paths"""
# The clipboard is an unknown state, so check the function does
# not crash and that it returns the right data type.
paths = get_clipboard_paths()
self.assertIsInstance(paths, (type(None), tuple))
# Set the clipboard to an unsupported type (text), so expect no
# files are returned
import win32clipboard
win32clipboard.OpenClipboard()
win32clipboard.EmptyClipboard()
fname = r'c:\windows\notepad.exe'
win32clipboard.SetClipboardText(fname, win32clipboard.CF_TEXT)
win32clipboard.SetClipboardText(fname, win32clipboard.CF_UNICODETEXT)
self.assertEqual(win32clipboard.GetClipboardData(
win32clipboard.CF_TEXT), fname.encode('ascii'))
self.assertEqual(win32clipboard.GetClipboardData(
win32clipboard.CF_UNICODETEXT), fname)
win32clipboard.CloseClipboard()
paths = get_clipboard_paths()
self.assertIsInstance(paths, (type(None), tuple))
self.assertEqual(paths, ())
# Put files in the clipboard in supported format
args = ('powershell.exe', 'Set-Clipboard',
'-Path', r'c:\windows\*.exe')
(ext_rc, _stdout, _stderr) = General.run_external(args)
self.assertEqual(ext_rc, 0)
paths = get_clipboard_paths()
self.assertIsInstance(paths, (type(None), tuple))
self.assertGreater(len(paths), 1)
for path in paths:
self.assertExists(path)
def test_get_font_conf_file(self):
"""Unit test for get_font_conf_file"""
# This tests only one of three situations.
font_fn = get_font_conf_file()
self.assertExists(font_fn)
def test_get_known_folder_path(self):
"""Unit test for get_known_folder_path"""
ret = get_known_folder_path('LocalAppDataLow')
self.assertNotEqual(ret, '')
self.assertNotEqual(ret, None)
self.assertExists(ret)
def test_get_fixed_drives(self):
"""Unit test for get_fixed_drives"""
drives = []
for drive in get_fixed_drives():
drives.append(drive)
self.assertEqual(drive, drive.upper())
self.assertIn("C:\\", drives)
def test_get_windows_version(self):
"""Unit test for get_windows_version"""
v = get_windows_version()
self.assertGreaterEqual(v, 5.1)
self.assertGreater(v, 5)
self.assertIsInstance(v, Decimal)
def test_empty_recycle_bin(self):
"""Unit test for empty_recycle_bin"""
# check the function basically works
for drive in get_fixed_drives():
ret = empty_recycle_bin(drive, really_delete=False)
self.assertIsInteger(ret)
@common.skipUnlessDestructive
def test_empty_recycle_bin_destructive(self):
"""Unit test the destructive part of empty_recycle_bin()"""
# check it deletes files for fixed drives
put_files_into_recycle_bin()
for drive in get_fixed_drives():
ret = empty_recycle_bin(drive, really_delete=True)
self.assertIsInteger(ret)
# check it deletes files for all drives
put_files_into_recycle_bin()
ret = empty_recycle_bin(None, really_delete=True)
self.assertIsInteger(ret)
# Repeat two for reasons.
# 1. Trying to empty an empty recycling bin can cause
# a 'catastrophic failure' error (handled in the function)
# 2. It should show zero bytes were deleted
for drive in get_fixed_drives():
ret = empty_recycle_bin(drive, really_delete=True)
self.assertEqual(ret, 0)
def test_file_wipe(self):
"""Unit test for file_wipe
There are more tests in testwipe.py
"""
from bleachbit.WindowsWipe import file_wipe, open_file, close_file, file_make_sparse
from bleachbit.Windows import elevate_privileges
from win32con import GENERIC_WRITE, WRITE_DAC
dirname = tempfile.mkdtemp(prefix='bleachbit-file-wipe')
filenames = ('short', 'long' + 'x' * 250, 'utf8-ɡælɪk')
for filename in filenames:
longname = os.path.join(dirname, filename)
logger.debug('file_wipe(%s)', longname)
def _write_file(longname, contents):
self.write_file(longname, contents)
import win32api
shortname = extended_path_undo(
win32api.GetShortPathName(extended_path(longname)))
self.assertExists(shortname)
return shortname
def _deny_access(fh):
import win32security
import ntsecuritycon as con
user, _, _ = win32security.LookupAccountName(
"", win32api.GetUserName())
dacl = win32security.ACL()
dacl.AddAccessDeniedAce(
win32security.ACL_REVISION, con.FILE_GENERIC_READ | con.FILE_GENERIC_WRITE, user)
win32security.SetSecurityInfo(fh, win32security.SE_FILE_OBJECT, win32security.DACL_SECURITY_INFORMATION,
None, None, dacl, None)
def _test_wipe(contents, deny_access=False, is_sparse=False):
shortname = _write_file(longname, contents)
if deny_access or is_sparse:
fh = open_file(extended_path(longname),
mode=GENERIC_WRITE | WRITE_DAC)
if is_sparse:
file_make_sparse(fh)
if deny_access:
_deny_access(fh)
close_file(fh)
logger.debug('test_file_wipe(): filename length={}, shortname length ={}, contents length={}, is_sparse={}'.format(
len(longname), len(shortname), len(contents), is_sparse))
if shell.IsUserAnAdmin():
# wiping requires admin privileges
file_wipe(shortname)
file_wipe(longname)
else:
with self.assertRaises(pywintypes.error):
file_wipe(shortname)
file_wipe(longname)
self.assertExists(shortname)
os.remove(extended_path(shortname))
self.assertNotExists(shortname)
# A small file that fits in MFT
_test_wipe(b'')
# requires wiping of extents
_test_wipe(b'secret' * 100000)
# requires wiping of extents: special file case
elevate_privileges(False)
_test_wipe(b'secret' * 100000, deny_access=True, is_sparse=True)
shutil.rmtree(dirname, True)
if shell.IsUserAnAdmin():
logger.warning(
'You should also run test_file_wipe() without admin privileges.')
else:
logger.warning(
'You should also run test_file_wipe() with admin privileges.')
def test_is_process_running(self):
# winlogon.exe runs on Windows XP and Windows 7
# explorer.exe did not run Appveyor, but it does as of 2025-01-25.
# svchost.exe runs both as system and current user on Windows 11
# svchost.exe does not run as same user on AppVeyor and Windows Server 2012.
tests = ((True, 'winlogon.exe', False),
(True, 'WinLogOn.exe', False),
(False, 'doesnotexist.exe', False),
(True, 'explorer.exe', True),
(True, 'svchost.exe', False),
(True, 'services.exe', False),
(False, 'services.exe', True),
(True, 'wininit.exe', False),
(False, 'wininit.exe', True))
for expected, exename, require_same_user in tests:
with self.subTest(exename=exename, require_same_user=require_same_user):
result = is_process_running(exename, require_same_user)
self.assertEqual(
expected, result, f'Expecting is_process_running({exename}, {require_same_user}) = {expected}, got {result}')
def test_setup_environment(self):
"""Unit test for setup_environment"""
setup_environment()
envs = ['commonappdata', 'documents', 'music', 'pictures', 'video',
'localappdata', 'localappdatalow']
for env in envs:
self.assertExists(os.environ[env])
def test_split_registry_key(self):
"""Unit test for split_registry_key"""
tests = (('HKCU\\Software', winreg.HKEY_CURRENT_USER, 'Software'),
('HKLM\\SOFTWARE', winreg.HKEY_LOCAL_MACHINE, 'SOFTWARE'),
('HKU\\.DEFAULT', winreg.HKEY_USERS, '.DEFAULT'))
for (input_key, expected_hive, expected_key) in tests:
(hive, key) = split_registry_key(input_key)
self.assertEqual(expected_hive, hive)
self.assertEqual(expected_key, key)
def test_parse_windows_build(self):
"""Unit test for parse_windows_build"""
tests = (('5.1.2600', Decimal('5.1')),
('5.1', Decimal('5.1')),
('10.0.10240', 10),
('10.0', 10))
for test in tests:
self.assertEqual(parse_windows_build(test[0]), test[1])
# test for crash
parse_windows_build()
parse_windows_build(platform.version())
parse_windows_build(platform.uname()[3])
def test_path_on_network(self):
"""Unit test for path_on_network"""
self.assertFalse(path_on_network('c:\\bleachbit.exe'))
self.assertFalse(path_on_network('a:\\bleachbit.exe'))
self.assertTrue(path_on_network('\\\\Server\\Folder\\bleachbit.exe'))
def test_shell_change_notify(self):
"""Unit test for shell_change_notify"""
ret = shell_change_notify()
self.assertEqual(ret, 0)
def test_set_environ(self):
for folder in ['folderäö', 'folder']:
test_dir = os.path.join(self.tempdir, folder)
os.mkdir(test_dir)
self.assertExists(test_dir)
set_environ('cd_test', test_dir)
self.assertEqual(os.environ['cd_test'], test_dir)
os.environ.pop('cd_test')
|