| Server IP : 54.36.91.62 / Your IP : 216.73.217.112 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/lemans/libraries/vendor/php-tuf/php-tuf/ |
Upload File : |
# For instructions on using this script, please see the README.
from unittest import mock
import shutil
import glob
import os
from fixtures import (
Simple,
AttackRollback,
Delegated,
HashedBins,
NestedDelegated,
NestedDelegatedErrors,
ThresholdTwo,
TerminatingDelegation,
TopLevelTerminating,
NestedTerminatingNonDelegatingDelegation,
ThreeLevelDelegation,
PublishedTwice,
TargetsLengthNoSnapshotLength
)
@mock.patch('time.time', mock.MagicMock(return_value=1577836800))
def generate_fixtures():
Simple.build()
AttackRollback.build()
Delegated.build()
HashedBins.build()
NestedDelegated.build()
NestedDelegatedErrors.build()
ThresholdTwo.build()
TerminatingDelegation.build()
TopLevelTerminating.build()
NestedTerminatingNonDelegatingDelegation.build()
ThreeLevelDelegation.build()
PublishedTwice.build()
PublishedTwice.build(rotate_keys='timestamp')
PublishedTwice.build(rotate_keys='snapshot')
TargetsLengthNoSnapshotLength.build()
# Remove all previous fixtures.
for f in glob.glob("fixtures/**/client"):
shutil.rmtree(f)
for f in glob.glob("fixtures/**/server"):
shutil.rmtree(f)
# Delete hash files to ensure they are generated again.
for f in glob.glob("fixtures/**/hash.txt"):
os.remove(f)
generate_fixtures()