├── .gitignore
├── AUTHORS
├── COPYING
├── MANIFEST.in
├── NEWS
├── README.md
├── contrib
├── complete.csh
├── complete.sh
├── git-obs-complete.bash
├── git-obs-complete.fish
├── git-obs-complete.zsh
├── osc.complete
├── osc.fish
└── osc.zsh
├── doc
├── Makefile
├── README.md
├── _static
│ ├── .keepme
│ └── css
│ │ └── custom.css
├── api
│ ├── modules.rst
│ ├── osc.OscConfigParser.rst
│ ├── osc.build.rst
│ ├── osc.commandline.rst
│ ├── osc.conf.rst
│ ├── osc.core.rst
│ ├── osc.credentials.rst
│ ├── osc.util.rst
│ └── tutorial.rst
├── conf.py
├── git-obs-quickstart.rst
├── index.rst
├── plugins
│ ├── index.rst
│ ├── plugin_locations.rst
│ ├── request.py
│ ├── request_accept.py
│ ├── request_list.py
│ └── simple.py
└── requirements.txt
├── git-obs.py
├── git-osc-precommit-hook.py
├── osc-wrapper.py
├── osc
├── .gitignore
├── OscConfigParser.py
├── __init__.py
├── _private
│ ├── __init__.py
│ ├── api.py
│ ├── api_build.py
│ ├── api_configuration.py
│ ├── api_source.py
│ ├── common.py
│ ├── package.py
│ └── request.py
├── babysitter.py
├── build.py
├── checker.py
├── cmdln.py
├── commandline.py
├── commandline_common.py
├── commandline_git.py
├── commands
│ ├── __init__.py
│ ├── fork.py
│ ├── person.py
│ ├── person_register.py
│ ├── person_search.py
│ ├── repo.py
│ ├── repo_add.py
│ ├── repo_list.py
│ ├── repo_remove.py
│ └── rmkpac.py
├── commands_git
│ ├── __init__.py
│ ├── api.py
│ ├── login.py
│ ├── login_add.py
│ ├── login_list.py
│ ├── login_remove.py
│ ├── login_update.py
│ ├── pr.py
│ ├── pr_checkout.py
│ ├── pr_create.py
│ ├── pr_get.py
│ ├── pr_list.py
│ ├── pr_review.py
│ ├── pr_search.py
│ ├── pr_set.py
│ ├── repo.py
│ ├── repo_clone.py
│ ├── repo_fork.py
│ ├── ssh_key.py
│ ├── ssh_key_add.py
│ ├── ssh_key_list.py
│ └── ssh_key_remove.py
├── conf.py
├── connection.py
├── core.py
├── credentials.py
├── fetch.py
├── git_scm
│ ├── README.md
│ ├── __init__.py
│ └── store.py
├── gitea_api
│ ├── __init__.py
│ ├── branch.py
│ ├── conf.py
│ ├── connection.py
│ ├── exceptions.py
│ ├── fork.py
│ ├── git.py
│ ├── pr.py
│ ├── repo.py
│ ├── ssh_key.py
│ ├── tardiff.py
│ └── user.py
├── grabber.py
├── meter.py
├── obs_api
│ ├── __init__.py
│ ├── attributes.py
│ ├── enums.py
│ ├── flag.py
│ ├── group_role.py
│ ├── keyinfo.py
│ ├── keyinfo_pubkey.py
│ ├── keyinfo_sslcert.py
│ ├── linkinfo.py
│ ├── package.py
│ ├── package_devel.py
│ ├── package_revision.py
│ ├── package_sources.py
│ ├── package_sources_file.py
│ ├── person.py
│ ├── person_owner.py
│ ├── person_role.py
│ ├── person_watchlist.py
│ ├── person_watchlist_package.py
│ ├── person_watchlist_project.py
│ ├── person_watchlist_request.py
│ ├── project.py
│ ├── project_devel.py
│ ├── project_link.py
│ ├── project_maintenance_maintains.py
│ ├── repository.py
│ ├── repository_download.py
│ ├── repository_download_master.py
│ ├── repository_hostsystem.py
│ ├── repository_path.py
│ ├── repository_releasetarget.py
│ ├── request.py
│ ├── request_action.py
│ ├── request_action_acceptinfo.py
│ ├── request_action_group.py
│ ├── request_action_grouped.py
│ ├── request_action_options.py
│ ├── request_action_person.py
│ ├── request_action_source.py
│ ├── request_action_target.py
│ ├── request_history.py
│ ├── request_review.py
│ ├── request_review_history.py
│ ├── request_sourcediff.py
│ ├── request_sourcediff_file_diff.py
│ ├── request_sourcediff_file_new.py
│ ├── request_sourcediff_file_old.py
│ ├── request_sourcediff_files_file.py
│ ├── request_sourcediff_issue.py
│ ├── request_sourcediff_new.py
│ ├── request_sourcediff_old.py
│ ├── request_state.py
│ ├── scmsync_obsinfo.py
│ ├── serviceinfo.py
│ ├── simple_flag.py
│ ├── status.py
│ ├── status_data.py
│ └── token.py
├── obs_scm
│ ├── __init__.py
│ ├── file.py
│ ├── linkinfo.py
│ ├── package.py
│ ├── project.py
│ ├── serviceinfo.py
│ └── store.py
├── oscerr.py
├── oscssl.py
├── output
│ ├── __init__.py
│ ├── input.py
│ ├── key_value_table.py
│ ├── output.py
│ ├── tty.py
│ └── widechar.py
├── py.typed
├── store.py
└── util
│ ├── __init__.py
│ ├── ar.py
│ ├── archquery.py
│ ├── cpio.py
│ ├── debquery.py
│ ├── git_version.py
│ ├── helper.py
│ ├── models.py
│ ├── packagequery.py
│ ├── repodata.py
│ ├── rpmquery.py
│ ├── safewriter.py
│ ├── xdg.py
│ ├── xml.py
│ └── xpath.py
├── setup.cfg
├── setup.py
└── tests
├── __init__.py
├── addfile_fixtures
├── oscrc
└── osctest
│ ├── .osc
│ ├── _apiurl
│ ├── _osclib_version
│ ├── _packages
│ └── _project
│ └── simple
│ ├── .osc
│ ├── _apiurl
│ ├── _files
│ ├── _osclib_version
│ ├── _package
│ ├── _project
│ ├── _to_be_deleted
│ ├── foo
│ ├── merge
│ └── nochange
│ ├── merge
│ ├── nochange
│ ├── toadd1
│ └── toadd2
├── commit_fixtures
├── oscrc
├── osctest
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _osclib_version
│ │ ├── _packages
│ │ └── _project
│ ├── add
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _meta
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_added
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── add
│ │ ├── exists
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── added_missing
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _meta
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ └── _to_be_added
│ │ └── bar
│ ├── allstates
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _meta
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_added
│ │ │ ├── _to_be_deleted
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ ├── missing
│ │ │ ├── nochange
│ │ │ └── test
│ │ ├── add
│ │ ├── exists
│ │ ├── missing
│ │ ├── nochange
│ │ └── test
│ ├── branch
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _meta
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ └── simple
│ │ ├── cfilesremote
│ │ ├── files
│ │ ├── filesremote
│ │ └── simple
│ ├── conflict
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _in_conflict
│ │ │ ├── _meta
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── delete
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _meta
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_deleted
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── exists
│ │ ├── foo
│ │ └── merge
│ ├── multiple
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _meta
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_added
│ │ │ ├── _to_be_deleted
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ ├── nochange
│ │ │ └── test
│ │ ├── add
│ │ ├── add2
│ │ ├── exists
│ │ ├── nochange
│ │ └── test
│ ├── nochanges
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _meta
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── exists
│ │ └── nochange
│ └── simple
│ │ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _meta
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ │ ├── exists
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
├── testAddedMissing_cfilesremote
├── testAddedMissing_filesremote
├── testAddedMissing_lfilelist
├── testAddedMissing_lfilelistwithSHA
├── testAddedMissing_missingfilelist
├── testAddedMissing_missingfilelistwithSHA
├── testAddedMissing_missingfilelistwithSHAsum
├── testAddfile_cfilesremote
├── testAddfile_filesremote
├── testAddfile_lfilelist
├── testAddfile_missingfilelist
├── testAllStates_cfilesremote
├── testAllStates_expfiles
├── testAllStates_filesremote
├── testAllStates_lfilelist
├── testAllStates_missingfilelist
├── testConflictfile_filesremote
├── testDeletefile_cfilesremote
├── testDeletefile_filesremote
├── testDeletefile_lfilelist
├── testExpand_cfilesremote
├── testExpand_expandedfilesremote
├── testExpand_filesremote
├── testExpand_lfilelist
├── testExpand_missingfilelist
├── testInterrupted_lfilelist
├── testMultiple_cfilesremote
├── testMultiple_filesremote
├── testMultiple_lfilelist
├── testMultiple_missingfilelist
├── testNoChanges_filesremote
├── testOpenRequests
├── testPartial_cfilesremote
├── testPartial_filesremote
├── testPartial_lfilelist
├── testPartial_missingfilelist
├── testSimple_cfilesremote
├── testSimple_filesremote
├── testSimple_lfilelist
├── testSimple_lfilelistwithSHA
├── testSimple_missingfilelist
├── testSimple_missingfilelistwithSHA
└── testSimple_missingfilelistwithSHAsum
├── common.py
├── conf_fixtures
└── oscrc
├── deletefile_fixtures
├── oscrc
└── osctest
│ ├── .osc
│ ├── _apiurl
│ ├── _osclib_version
│ ├── _packages
│ └── _project
│ ├── already_deleted
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── _to_be_added
│ │ ├── _to_be_deleted
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── merge
│ ├── nochange
│ ├── toadd1
│ └── toadd2
│ ├── conflict
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _in_conflict
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── _to_be_added
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── foo
│ ├── foo.mine
│ ├── foo.r2
│ ├── merge
│ ├── nochange
│ ├── toadd1
│ └── toadd2
│ ├── delete
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── _to_be_added
│ │ ├── _to_be_deleted
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── merge
│ ├── nochange
│ └── toadd2
│ ├── replace
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── _to_be_added
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── foo
│ ├── merge
│ ├── nochange
│ ├── toadd1
│ └── toadd2
│ └── simple
│ ├── .osc
│ ├── _apiurl
│ ├── _files
│ ├── _osclib_version
│ ├── _package
│ ├── _project
│ ├── _to_be_added
│ ├── foo
│ ├── merge
│ └── nochange
│ ├── foo
│ ├── merge
│ ├── nochange
│ ├── skipped_exists
│ ├── toadd1
│ └── toadd2
├── difffile_fixtures
├── oscrc
├── osctest
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _osclib_version
│ │ ├── _packages
│ │ └── _project
│ ├── binary
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_added
│ │ │ ├── _to_be_deleted
│ │ │ ├── binary
│ │ │ └── binary_deleted
│ │ ├── binary
│ │ └── binary_added
│ ├── remote_localdelete
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_deleted
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── foo
│ │ ├── nochange
│ │ └── toadd2
│ ├── remote_localmodified
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── binary
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── binary
│ │ ├── foo
│ │ ├── merge
│ │ ├── nochange
│ │ ├── toadd1
│ │ └── toadd2
│ ├── remote_simple
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_added
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── binary
│ │ ├── foo
│ │ ├── merge
│ │ ├── nochange
│ │ ├── toadd1
│ │ └── toadd2
│ ├── remote_simple_noadd
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── foo
│ │ ├── merge
│ │ ├── nochange
│ │ └── toadd2
│ ├── replaced
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_added
│ │ │ └── replaced
│ │ └── replaced
│ └── simple
│ │ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _in_conflict
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── _to_be_added
│ │ ├── _to_be_deleted
│ │ ├── foo
│ │ ├── merge
│ │ ├── missing
│ │ ├── nochange
│ │ ├── replaced
│ │ └── somefile
│ │ ├── foo
│ │ ├── merge
│ │ ├── nochange
│ │ ├── replaced
│ │ ├── toadd1
│ │ └── toadd2
├── testDiffRemoteDeletedLocalAdded_files
├── testDiffRemoteExistingLocalNotExisting_binary
├── testDiffRemoteExistingLocalNotExisting_files
├── testDiffRemoteExistingLocalNotExisting_foobar
├── testDiffRemoteMissingLocalDeleted_files
├── testDiffRemoteMissingLocalExisting_files
├── testDiffRemoteModified_files
├── testDiffRemoteModified_merge
├── testDiffRemoteNoChange_files
├── testDiffRemoteUnchangedLocalModified_binary
├── testDiffRemoteUnchangedLocalModified_files
└── testDiffRemoteUnchangedLocalModified_nochange
├── fixtures
├── README
├── archive-no-ext_fnhdr.ar
├── archive.ar
├── archive.cpio
└── packages
│ ├── oscrc
│ └── osctest
│ ├── openSUSE:Tools
│ └── osc
│ │ └── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ └── _project
│ ├── projectA-different-apiurl
│ ├── pkgA
│ │ └── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ └── _project
│ └── pkgB
│ │ └── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ └── _project
│ ├── projectA
│ ├── pkgA-symlink
│ ├── pkgA
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ └── _project
│ │ ├── pkgA.changes
│ │ └── pkgA.spec
│ └── pkgB
│ │ └── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ └── _project
│ └── projectB
│ ├── pkgA
│ └── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ └── _project
│ └── pkgB
│ └── .osc
│ ├── _apiurl
│ ├── _files
│ ├── _osclib_version
│ ├── _package
│ └── _project
├── init_package_fixtures
└── oscrc
├── init_project_fixtures
└── oscrc
├── osc
├── prdiff_fixtures
├── common-two-diff
├── home:user:branches:some:project
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _osclib_version
│ │ ├── _packages
│ │ └── _project
│ ├── common-two
│ └── directory
├── new:prj
│ ├── common-two
│ └── directory
├── no-requests
├── old:prj
│ ├── common-two
│ └── directory
├── oscrc
├── osctest
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _osclib_version
│ │ ├── _packages
│ │ └── _project
│ ├── common-one
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _meta
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ └── common-one.spec
│ │ └── common-one.spec
│ └── common-two
│ │ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _meta
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ └── common-two.spec
│ │ └── common-two.spec
├── request
└── some:project
│ ├── .osc
│ ├── _apiurl
│ ├── _osclib_version
│ ├── _packages
│ └── _project
│ ├── common-two
│ └── directory
├── project_package_status_fixtures
├── oscrc
└── osctest
│ ├── .osc
│ ├── _apiurl
│ ├── _osclib_version
│ ├── _packages
│ └── _project
│ ├── added
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ └── _to_be_added
│ ├── exists
│ └── new
│ ├── conflict
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _in_conflict
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── conflict
│ │ └── test
│ ├── conflict
│ ├── exists
│ └── test
│ ├── deleted
│ └── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── _to_be_deleted
│ │ ├── modified
│ │ └── test
│ ├── excluded
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── modified
│ │ └── test
│ ├── _linkerror
│ ├── dir
│ │ └── file
│ ├── exists
│ ├── foo.orig
│ ├── modified
│ └── test
│ └── simple
│ ├── .osc
│ ├── _apiurl
│ ├── _files
│ ├── _osclib_version
│ ├── _package
│ ├── _project
│ ├── _to_be_added
│ ├── _to_be_deleted
│ ├── foo
│ ├── merge
│ ├── missing
│ ├── nochange
│ └── test
│ ├── add
│ ├── exists
│ ├── missing
│ ├── nochange
│ └── test
├── repairwc_fixtures
├── oscrc
├── osctest
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _osclib_version
│ │ ├── _packages
│ │ └── _project
│ ├── _packages
│ ├── buildfiles
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _buildconfig_prj_arch
│ │ │ ├── _buildinfo_prj_arch.xml
│ │ │ ├── _files
│ │ │ ├── _in_conflict
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_added
│ │ │ ├── _to_be_deleted
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── foobar
│ │ ├── merge
│ │ ├── nochange
│ │ └── toadd1
│ ├── invalid_apiurl
│ │ └── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _meta
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ └── _project
│ ├── multiple
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _in_conflict
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_added
│ │ │ ├── _to_be_deleted
│ │ │ ├── foo
│ │ │ └── unknown_file
│ │ ├── foobar
│ │ ├── merge
│ │ ├── nochange
│ │ └── toadd1
│ ├── noapiurl
│ │ ├── .osc
│ │ │ ├── _files
│ │ │ ├── _in_conflict
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_added
│ │ │ ├── _to_be_deleted
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── foobar
│ │ ├── merge
│ │ ├── nochange
│ │ └── toadd1
│ ├── simple
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_deleted
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── merge
│ │ ├── nochange
│ │ ├── toadd1
│ │ └── toadd2
│ ├── simple1
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_deleted
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── merge
│ │ ├── nochange
│ │ ├── toadd1
│ │ └── toadd2
│ ├── simple2
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_deleted
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ ├── nochange
│ │ │ └── somefile
│ │ ├── merge
│ │ ├── nochange
│ │ ├── toadd1
│ │ └── toadd2
│ ├── simple3
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_added
│ │ │ ├── _to_be_deleted
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ ├── nochange
│ │ │ └── toadd1
│ │ ├── merge
│ │ ├── nochange
│ │ ├── toadd1
│ │ └── toadd2
│ ├── simple4
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_deleted
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── merge
│ │ ├── nochange
│ │ └── toadd1
│ ├── simple5
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _in_conflict
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_deleted
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── merge
│ │ ├── nochange
│ │ └── toadd1
│ ├── simple6
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_added
│ │ │ ├── _to_be_deleted
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── merge
│ │ ├── nochange
│ │ └── toadd1
│ ├── simple7
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _in_conflict
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_added
│ │ │ ├── _to_be_deleted
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ └── nochange
│ │ ├── foobar
│ │ ├── merge
│ │ ├── nochange
│ │ └── toadd1
│ ├── simple8
│ │ ├── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ ├── _project
│ │ │ ├── _to_be_added
│ │ │ ├── _to_be_deleted
│ │ │ ├── foo
│ │ │ ├── merge
│ │ │ ├── nochange
│ │ │ └── skipped
│ │ ├── merge
│ │ ├── nochange
│ │ └── toadd1
│ ├── working_empty
│ │ └── .osc
│ │ │ ├── _apiurl
│ │ │ ├── _files
│ │ │ ├── _osclib_version
│ │ │ ├── _package
│ │ │ └── _project
│ └── working_nonempty
│ │ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _in_conflict
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── _to_be_added
│ │ ├── _to_be_deleted
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ │ ├── foobar
│ │ ├── merge
│ │ ├── nochange
│ │ └── toadd1
├── prj_invalidapiurl
│ └── .osc
│ │ ├── _apiurl
│ │ ├── _osclib_version
│ │ ├── _packages
│ │ └── _project
└── prj_noapiurl
│ └── .osc
│ ├── _osclib_version
│ ├── _packages
│ └── _project
├── request_fixtures
├── oscrc
├── test_read_request1.xml
├── test_read_request2.xml
├── test_request_list_view1.xml
├── test_request_list_view2.xml
└── test_request_str1.xml
├── results_fixtures
├── oscrc
├── result-dirty.xml
└── result.xml
├── revertfile_fixtures
├── oscrc
└── osctest
│ ├── .osc
│ ├── _apiurl
│ ├── _osclib_version
│ ├── _packages
│ └── _project
│ └── simple
│ ├── .osc
│ ├── _apiurl
│ ├── _files
│ ├── _in_conflict
│ ├── _osclib_version
│ ├── _package
│ ├── _project
│ ├── _to_be_added
│ ├── _to_be_deleted
│ ├── deleted
│ ├── foo
│ ├── merge
│ ├── missing
│ ├── nochange
│ ├── replaced
│ └── somefile
│ ├── foo
│ ├── merge
│ ├── nochange
│ ├── replaced
│ ├── toadd1
│ └── toadd2
├── setlinkrev_fixtures
├── expandedsrc_filesremote
├── link_with_rev
├── md5_rev_link
├── noproject_link
├── oscrc
├── rev_link
├── simple_filesremote
└── simple_link
├── test__private_api.py
├── test__private_package.py
├── test_addfiles.py
├── test_build.py
├── test_commandline.py
├── test_commit.py
├── test_conf.py
├── test_config_parser.py
├── test_core.py
├── test_core_package.py
├── test_core_request.py
├── test_credentials.py
├── test_deletefiles.py
├── test_difffiles.py
├── test_doc_plugins.py
├── test_git_editor.py
├── test_git_scm_store.py
├── test_gitea_api_branch.py
├── test_gitea_api_git.py
├── test_gitea_api_pr.py
├── test_gitea_api_repo.py
├── test_gitea_api_ssh_key.py
├── test_gitea_api_user.py
├── test_grabber.py
├── test_helpers.py
├── test_init_package.py
├── test_init_project.py
├── test_keyinfo.py
├── test_models.py
├── test_models_xmlmodel.py
├── test_output.py
├── test_package_status.py
├── test_prdiff.py
├── test_project_status.py
├── test_repairwc.py
├── test_request.py
├── test_results.py
├── test_revertfiles.py
├── test_scmsync_obsinfo.py
├── test_setlinkrev.py
├── test_store.py
├── test_update.py
├── test_util_ar.py
├── test_util_cpio.py
├── test_vc.py
├── test_xpath.py
└── update_fixtures
├── meta.xml
├── oscrc
├── osctest
├── .osc
│ ├── _apiurl
│ ├── _osclib_version
│ ├── _packages
│ └── _project
├── already_in_conflict
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _in_conflict
│ │ ├── _meta
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── foo
│ ├── merge
│ └── nochange
├── conflict
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── foo
│ ├── merge
│ └── nochange
├── deleted
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── _to_be_deleted
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── merge
│ └── nochange
├── limitsize
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── foo
│ ├── merge
│ └── nochange
├── limitsize_local
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── _size_limit
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── foo
│ ├── merge
│ └── nochange
├── metamode
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _meta_mode
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── foo
│ ├── merge
│ └── nochange
├── new
│ └── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ └── _project
├── restore
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── exists
│ ├── merge
│ └── nochange
├── resume
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _in_update
│ │ │ ├── _files
│ │ │ └── foo
│ │ ├── _meta
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── added
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── added
│ ├── exists
│ ├── foo
│ ├── merge
│ └── nochange
├── resume_deleted
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _in_update
│ │ │ ├── _files
│ │ │ └── foo
│ │ ├── _meta
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── added
│ │ ├── foo
│ │ ├── merge
│ │ └── nochange
│ ├── added
│ ├── exists
│ ├── f
│ ├── foo
│ ├── merge
│ └── nochange
├── services
│ ├── .osc
│ │ ├── _apiurl
│ │ ├── _files
│ │ ├── _osclib_version
│ │ ├── _package
│ │ ├── _project
│ │ ├── foo
│ │ └── merge
│ ├── _service:exists
│ ├── foo
│ └── merge
└── simple
│ ├── .osc
│ ├── _apiurl
│ ├── _files
│ ├── _osclib_version
│ ├── _package
│ ├── _project
│ ├── foo
│ ├── merge
│ └── nochange
│ ├── exists
│ ├── foo
│ ├── merge
│ └── nochange
├── testUpdateAlreadyInConflict_files
├── testUpdateAlreadyInConflict_merge
├── testUpdateConflict_files
├── testUpdateConflict_merge
├── testUpdateDeletedFile_files
├── testUpdateLimitSizeAddDelete_exists
├── testUpdateLimitSizeAddDelete_files
├── testUpdateLimitSizeAddDelete_filesremote
├── testUpdateLimitSizeNoChange_files
├── testUpdateLimitSizeNoChange_filesremote
├── testUpdateLocalDeletions_files
├── testUpdateLocalDeletions_foo
├── testUpdateLocalDeletions_merge
├── testUpdateLocalLimitSizeNoChange_files
├── testUpdateLocalLimitSizeNoChange_filesremote
├── testUpdateMetaMode__meta
├── testUpdateMetaMode_filesremote
├── testUpdateNewFileLocalExists_exists
├── testUpdateNewFileLocalExists_files
├── testUpdateNewFile_files
├── testUpdateNewFile_upstream_added
├── testUpdateNew_filesremote
├── testUpdateNoChanges_files
├── testUpdateRestore_files
├── testUpdateRestore_foo
├── testUpdateResumeDeletedFile_files
├── testUpdateResumeDeletedFile_foo
├── testUpdateResumeDeletedFile_merge
├── testUpdateResume_files
├── testUpdateResume_foo
├── testUpdateResume_merge
├── testUpdateServiceFilesAddDelete__service:bar
├── testUpdateServiceFilesAddDelete__service:foo
├── testUpdateServiceFilesAddDelete_bigfile
├── testUpdateServiceFilesAddDelete_files
├── testUpdateServiceFilesAddDelete_filesremote
├── testUpdateUpstreamModifiedFile_files
└── testUpdateUpstreamModifiedFile_foo
/MANIFEST.in:
--------------------------------------------------------------------------------
1 | include NEWS
2 | include README.md
3 | include AUTHORS
4 | include COPYING
5 |
--------------------------------------------------------------------------------
/contrib/git-obs-complete.bash:
--------------------------------------------------------------------------------
1 | eval "$(register-python-argcomplete --shell bash git-obs)"
2 |
--------------------------------------------------------------------------------
/contrib/git-obs-complete.fish:
--------------------------------------------------------------------------------
1 | eval "$(register-python-argcomplete --shell fish git-obs)"
2 |
--------------------------------------------------------------------------------
/contrib/git-obs-complete.zsh:
--------------------------------------------------------------------------------
1 | eval "$(register-python-argcomplete --shell zsh git-obs)"
2 |
--------------------------------------------------------------------------------
/doc/README.md:
--------------------------------------------------------------------------------
1 | This is the place where all osc documentation starts
2 |
--------------------------------------------------------------------------------
/doc/_static/.keepme:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/doc/_static/.keepme
--------------------------------------------------------------------------------
/doc/_static/css/custom.css:
--------------------------------------------------------------------------------
1 | dl.property {
2 | display: block !important;
3 | }
4 |
--------------------------------------------------------------------------------
/doc/api/modules.rst:
--------------------------------------------------------------------------------
1 | osc
2 | ===
3 |
4 | These are the packages in the osc package.
5 |
6 | .. toctree::
7 | :maxdepth: 4
8 |
9 | osc.core
10 | osc.util
11 | osc.credentials
12 | osc.build
13 | osc.commandline
14 | osc.conf
15 | osc.OscConfigParser
16 |
--------------------------------------------------------------------------------
/doc/api/osc.OscConfigParser.rst:
--------------------------------------------------------------------------------
1 | .. py:module:: osc.OscConfigParser
2 |
3 | OscConfigParser
4 | ===============
5 |
6 | This is the osc config parser.
7 |
8 | basic structures
9 | ----------------
10 |
11 | .. automodule:: osc.OscConfigParser
12 | :members:
13 |
--------------------------------------------------------------------------------
/doc/api/osc.build.rst:
--------------------------------------------------------------------------------
1 | .. py:module:: osc.build
2 |
3 | build
4 | =====
5 |
6 | This is the osc build module to talk to the build script.
7 |
8 | basic structures
9 | ----------------
10 |
11 | .. automodule:: osc.build
12 | :members:
13 |
--------------------------------------------------------------------------------
/doc/api/osc.conf.rst:
--------------------------------------------------------------------------------
1 | .. py:module:: osc.conf
2 |
3 |
4 | osc.conf
5 | ========
6 |
7 |
8 | .. automodule:: osc.conf
9 | :members:
10 | :exclude-members: maintained_attribute, maintenance_attribute, maintained_update_project_attribute
11 |
--------------------------------------------------------------------------------
/doc/api/osc.credentials.rst:
--------------------------------------------------------------------------------
1 | .. py:module:: osc.credentials
2 |
3 | credentials
4 | ===========
5 |
6 | This is the osc credentials module.
7 |
8 | basic structures
9 | ----------------
10 |
11 | .. automodule:: osc.credentials
12 | :members:
13 |
--------------------------------------------------------------------------------
/doc/plugins/plugin_locations.rst:
--------------------------------------------------------------------------------
1 | - The directory from where the ``osc.commands`` module gets loaded.
2 | - /usr/lib/osc-plugins
3 | - /usr/local/lib/osc-plugins
4 | - ~/.local/lib/osc-plugins
5 | - ~/.osc-plugins
--------------------------------------------------------------------------------
/doc/plugins/request_list.py:
--------------------------------------------------------------------------------
1 | import osc.commandline
2 |
3 |
4 | class RequestListCommand(osc.commandline.OscCommand):
5 | """
6 | List requests
7 | """
8 |
9 | name = "list"
10 | parent = "RequestCommand"
11 |
12 | def run(self, args):
13 | print("Listing requests")
14 |
--------------------------------------------------------------------------------
/doc/requirements.txt:
--------------------------------------------------------------------------------
1 | cryptography
2 | sphinx-rtd-theme
3 | urllib3
4 |
--------------------------------------------------------------------------------
/git-obs.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python3
2 | # PYTHON_ARGCOMPLETE_OK
3 |
4 |
5 | """
6 | This wrapper allows git-obs to be called from the source directory during development.
7 | """
8 |
9 |
10 | import osc.commandline_git
11 |
12 |
13 | if __name__ == "__main__":
14 | osc.commandline_git.main()
15 |
--------------------------------------------------------------------------------
/git-osc-precommit-hook.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python3
2 |
3 | """
4 | This wrapper allows git-osc-precommit-hook to be called from the source directory during development.
5 | """
6 |
7 | import osc.babysitter
8 |
9 | osc.babysitter.gitOscPrecommitHook()
10 |
--------------------------------------------------------------------------------
/osc-wrapper.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python3
2 |
3 | """
4 | This wrapper allows osc to be called from the source directory during development.
5 | """
6 |
7 | import osc.babysitter
8 |
9 | osc.babysitter.main()
10 |
--------------------------------------------------------------------------------
/osc/.gitignore:
--------------------------------------------------------------------------------
1 | *.pyc
2 | *.swp
3 |
--------------------------------------------------------------------------------
/osc/__init__.py:
--------------------------------------------------------------------------------
1 | __all__ = [
2 | 'babysitter',
3 | 'build',
4 | 'connection',
5 | 'commandline',
6 | 'core',
7 | 'fetch',
8 | 'grabber',
9 | 'meter',
10 | 'oscerr',
11 | 'oscssl',
12 | ]
13 |
14 |
15 | from .util import git_version
16 | __version__ = git_version.get_version('1.16.0')
17 |
18 |
19 | # vim: sw=4 et
20 |
--------------------------------------------------------------------------------
/osc/commands/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/osc/commands/__init__.py
--------------------------------------------------------------------------------
/osc/commands/person.py:
--------------------------------------------------------------------------------
1 | import osc.commandline
2 |
3 |
4 | class PersonCommand(osc.commandline.OscCommand):
5 | """
6 | Manage persons
7 | """
8 |
9 | name = "person"
10 |
11 | def run(self, args):
12 | pass
13 |
--------------------------------------------------------------------------------
/osc/commands/repo.py:
--------------------------------------------------------------------------------
1 | import osc.commandline
2 |
3 |
4 | class RepoCommand(osc.commandline.OscCommand):
5 | """
6 | Manage repositories in project meta
7 | """
8 |
9 | name = "repo"
10 |
11 | def run(self, args):
12 | pass
13 |
--------------------------------------------------------------------------------
/osc/commands_git/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/osc/commands_git/__init__.py
--------------------------------------------------------------------------------
/osc/commands_git/login.py:
--------------------------------------------------------------------------------
1 | import osc.commandline_git
2 |
3 |
4 | class LoginCommand(osc.commandline_git.GitObsCommand):
5 | """
6 | Manage configured credentials to Gitea servers
7 | """
8 |
9 | name = "login"
10 |
11 | def init_arguments(self):
12 | pass
13 |
14 | def run(self, args):
15 | self.parser.print_help()
16 |
--------------------------------------------------------------------------------
/osc/commands_git/repo.py:
--------------------------------------------------------------------------------
1 | import osc.commandline_git
2 |
3 |
4 | class RepoCommand(osc.commandline_git.GitObsCommand):
5 | """
6 | Manage git repos
7 | """
8 |
9 | name = "repo"
10 |
11 | def init_arguments(self):
12 | pass
13 |
14 | def run(self, args):
15 | self.parser.print_help()
16 |
--------------------------------------------------------------------------------
/osc/commands_git/ssh_key.py:
--------------------------------------------------------------------------------
1 | import osc.commandline_git
2 |
3 |
4 | class SSHKeyCommand(osc.commandline_git.GitObsCommand):
5 | """
6 | Manage public SSH keys
7 | """
8 |
9 | name = "ssh-key"
10 |
11 | def init_arguments(self):
12 | pass
13 |
14 | def run(self, args):
15 | self.parser.print_help()
16 |
--------------------------------------------------------------------------------
/osc/git_scm/README.md:
--------------------------------------------------------------------------------
1 | # Warning
2 |
3 | This module provides EXPERIMENTAL and UNSTABLE support for git scm such as https://src.opensuse.org/.
4 | The code may change or disappear without a prior notice!
5 |
--------------------------------------------------------------------------------
/osc/git_scm/__init__.py:
--------------------------------------------------------------------------------
1 | import sys
2 |
3 | from .store import GitStore
4 |
5 |
6 | def warn_experimental():
7 | print("WARNING: Using EXPERIMENTAL support for git scm. The functionality may change or disappear without a prior notice!", file=sys.stderr)
8 |
--------------------------------------------------------------------------------
/osc/obs_api/__init__.py:
--------------------------------------------------------------------------------
1 | from .attributes import Attributes
2 | from .keyinfo import Keyinfo
3 | from .package import Package
4 | from .package_sources import PackageSources
5 | from .person import Person
6 | from .project import Project
7 | from .request import Request
8 | from .token import Token
9 |
--------------------------------------------------------------------------------
/osc/obs_api/package_devel.py:
--------------------------------------------------------------------------------
1 | from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
2 |
3 |
4 | class PackageDevel(XmlModel):
5 | XML_TAG = "devel"
6 |
7 | project: str = Field(
8 | xml_attribute=True,
9 | )
10 |
11 | package: Optional[str] = Field(
12 | xml_attribute=True,
13 | )
14 |
--------------------------------------------------------------------------------
/osc/obs_api/person_owner.py:
--------------------------------------------------------------------------------
1 | from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
2 |
3 |
4 | class PersonOwner(XmlModel):
5 | XML_TAG = "owner"
6 |
7 | userid: str = Field(
8 | xml_attribute=True,
9 | )
10 |
--------------------------------------------------------------------------------
/osc/obs_api/person_watchlist_package.py:
--------------------------------------------------------------------------------
1 | from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
2 |
3 |
4 | class PersonWatchlistPackage(XmlModel):
5 | XML_TAG = "package"
6 |
7 | name: str = Field(
8 | xml_attribute=True,
9 | )
10 |
11 | project: str = Field(
12 | xml_attribute=True,
13 | )
14 |
--------------------------------------------------------------------------------
/osc/obs_api/person_watchlist_project.py:
--------------------------------------------------------------------------------
1 | from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
2 |
3 |
4 | class PersonWatchlistProject(XmlModel):
5 | XML_TAG = "project"
6 |
7 | name: str = Field(
8 | xml_attribute=True,
9 | )
10 |
--------------------------------------------------------------------------------
/osc/obs_api/person_watchlist_request.py:
--------------------------------------------------------------------------------
1 | from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
2 |
3 |
4 | class PersonWatchlistRequest(XmlModel):
5 | XML_TAG = "request"
6 |
7 | number: str = Field(
8 | xml_attribute=True,
9 | )
10 |
--------------------------------------------------------------------------------
/osc/obs_api/project_devel.py:
--------------------------------------------------------------------------------
1 | from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
2 |
3 |
4 | class ProjectDevel(XmlModel):
5 | XML_TAG = "devel"
6 |
7 | project: str = Field(
8 | xml_attribute=True,
9 | )
10 |
--------------------------------------------------------------------------------
/osc/obs_api/project_maintenance_maintains.py:
--------------------------------------------------------------------------------
1 | from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
2 |
3 |
4 | class ProjectMaintenanceMaintains(XmlModel):
5 | XML_TAG = "maintains"
6 |
7 | project: str = Field(
8 | xml_attribute=True,
9 | )
10 |
--------------------------------------------------------------------------------
/osc/obs_api/repository_hostsystem.py:
--------------------------------------------------------------------------------
1 | from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
2 |
3 |
4 | class RepositoryHostsystem(XmlModel):
5 | XML_TAG = "hostsystem"
6 |
7 | repository: str = Field(
8 | xml_attribute=True,
9 | )
10 |
11 | project: str = Field(
12 | xml_attribute=True,
13 | )
14 |
--------------------------------------------------------------------------------
/osc/obs_api/repository_path.py:
--------------------------------------------------------------------------------
1 | from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
2 |
3 |
4 | class RepositoryPath(XmlModel):
5 | XML_TAG = "path"
6 |
7 | project: str = Field(
8 | xml_attribute=True,
9 | )
10 |
11 | repository: str = Field(
12 | xml_attribute=True,
13 | )
14 |
--------------------------------------------------------------------------------
/osc/obs_api/request_action_group.py:
--------------------------------------------------------------------------------
1 | from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
2 |
3 |
4 | class RequestActionGroup(XmlModel):
5 | XML_TAG = "group"
6 |
7 | name: str = Field(
8 | xml_attribute=True,
9 | )
10 |
11 | role: Optional[str] = Field(
12 | xml_attribute=True,
13 | )
14 |
--------------------------------------------------------------------------------
/osc/obs_api/request_action_grouped.py:
--------------------------------------------------------------------------------
1 | from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
2 |
3 |
4 | class RequestActionGrouped(XmlModel):
5 | XML_TAG = "grouped"
6 |
7 | id: str = Field(
8 | xml_attribute=True,
9 | )
10 |
--------------------------------------------------------------------------------
/osc/obs_api/request_action_person.py:
--------------------------------------------------------------------------------
1 | from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
2 |
3 |
4 | class RequestActionPerson(XmlModel):
5 | XML_TAG = "person"
6 |
7 | name: str = Field(
8 | xml_attribute=True,
9 | )
10 |
11 | role: Optional[str] = Field(
12 | xml_attribute=True,
13 | )
14 |
--------------------------------------------------------------------------------
/osc/obs_api/request_sourcediff_file_diff.py:
--------------------------------------------------------------------------------
1 | from ..util.models import * # pylint: disable=wildcard-import,unused-wildcard-import
2 |
3 |
4 | class RequestSourcediffFileDiff(XmlModel):
5 | XML_TAG = "diff"
6 |
7 | lines: int = Field(
8 | xml_attribute=True,
9 | )
10 |
11 | text: str = Field(
12 | xml_set_text=True,
13 | )
14 |
--------------------------------------------------------------------------------
/osc/obs_scm/__init__.py:
--------------------------------------------------------------------------------
1 | from .file import File
2 | from .linkinfo import Linkinfo
3 | from .package import Package
4 | from .project import Project
5 | from .serviceinfo import Serviceinfo
6 | from .store import Store
7 |
--------------------------------------------------------------------------------
/osc/py.typed:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/osc/py.typed
--------------------------------------------------------------------------------
/osc/util/__init__.py:
--------------------------------------------------------------------------------
1 | __all__ = ['ar', 'cpio', 'debquery', 'packagequery', 'rpmquery', 'safewriter']
2 |
--------------------------------------------------------------------------------
/osc/util/xdg.py:
--------------------------------------------------------------------------------
1 | import os
2 |
3 | XDG_DATA_HOME = os.environ.get("XDG_DATA_HOME", "~/.local/share")
4 | XDG_CONFIG_HOME = os.environ.get("XDG_CONFIG_HOME", "~/.config")
5 | XDG_STATE_HOME = os.environ.get("XDG_STATE_HOME", "~/.local/state")
6 | XDG_CACHE_HOME = os.environ.get("XDG_CACHE_HOME", "~/.cache")
7 |
--------------------------------------------------------------------------------
/setup.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python3
2 |
3 |
4 | import setuptools
5 |
6 |
7 | if __name__ == "__main__":
8 | setuptools.setup()
9 |
--------------------------------------------------------------------------------
/tests/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/__init__.py
--------------------------------------------------------------------------------
/tests/addfile_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/.osc/_packages:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
2 |
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/simple/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/simple/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/simple/.osc/_package:
--------------------------------------------------------------------------------
1 | simple
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/simple/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/simple/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/simple/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/simple/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/simple/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/simple/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/simple/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/simple/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/addfile_fixtures/osctest/simple/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/.osc/_packages:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/add/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/add/.osc/_meta:
--------------------------------------------------------------------------------
1 |
2 | Title example
3 | Description example
4 |
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/add/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/add/.osc/_package:
--------------------------------------------------------------------------------
1 | add
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/add/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/add/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | add
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/add/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/add/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/add/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/add/add:
--------------------------------------------------------------------------------
1 | added file
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/add/exists:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/commit_fixtures/osctest/add/exists
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/add/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/add/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/add/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/added_missing/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/added_missing/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/added_missing/.osc/_meta:
--------------------------------------------------------------------------------
1 |
2 | Title example
3 | Description example
4 |
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/added_missing/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/added_missing/.osc/_package:
--------------------------------------------------------------------------------
1 | added_missing
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/added_missing/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/added_missing/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | add
2 | bar
3 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/added_missing/bar:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/.osc/_meta:
--------------------------------------------------------------------------------
1 |
2 | Title example
3 | Description example
4 |
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/.osc/_package:
--------------------------------------------------------------------------------
1 | allstates
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | add
2 | missing
3 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/.osc/missing:
--------------------------------------------------------------------------------
1 | missing
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/.osc/test:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/add:
--------------------------------------------------------------------------------
1 | added file
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/exists:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/commit_fixtures/osctest/allstates/exists
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/missing:
--------------------------------------------------------------------------------
1 | replaced
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/nochange:
--------------------------------------------------------------------------------
1 | This file did change.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/allstates/test:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/branch/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/branch/.osc/_meta:
--------------------------------------------------------------------------------
1 |
2 | Title example
3 | Description example
4 |
5 |
6 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/branch/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/branch/.osc/_package:
--------------------------------------------------------------------------------
1 | branch
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/branch/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/branch/.osc/simple:
--------------------------------------------------------------------------------
1 | imple modified file.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/branch/simple:
--------------------------------------------------------------------------------
1 | simple modified file.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/conflict/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/conflict/.osc/_in_conflict:
--------------------------------------------------------------------------------
1 | merge
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/conflict/.osc/_meta:
--------------------------------------------------------------------------------
1 |
2 | Title example
3 | Description example
4 |
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/conflict/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/conflict/.osc/_package:
--------------------------------------------------------------------------------
1 | conflict
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/conflict/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/conflict/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/conflict/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/conflict/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/conflict/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/conflict/merge:
--------------------------------------------------------------------------------
1 | Is it possible
2 | to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/conflict/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/delete/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/delete/.osc/_meta:
--------------------------------------------------------------------------------
1 |
2 | Title example
3 | Description example
4 |
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/delete/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/delete/.osc/_package:
--------------------------------------------------------------------------------
1 | delete
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/delete/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/delete/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | nochange
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/delete/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/delete/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/delete/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/delete/exists:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/commit_fixtures/osctest/delete/exists
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/delete/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/delete/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/.osc/_meta:
--------------------------------------------------------------------------------
1 |
2 | Title example
3 | Description example
4 |
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/.osc/_package:
--------------------------------------------------------------------------------
1 | multiple
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | add
2 | add2
3 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 | merge
3 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/.osc/test:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/add:
--------------------------------------------------------------------------------
1 | added file
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/add2:
--------------------------------------------------------------------------------
1 | add2
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/exists:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/commit_fixtures/osctest/multiple/exists
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/nochange:
--------------------------------------------------------------------------------
1 | This file did change.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/multiple/test:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/nochanges/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/nochanges/.osc/_meta:
--------------------------------------------------------------------------------
1 |
2 | Title example
3 | Description example
4 |
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/nochanges/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/nochanges/.osc/_package:
--------------------------------------------------------------------------------
1 | nochanges
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/nochanges/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/nochanges/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/nochanges/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/nochanges/exists:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/commit_fixtures/osctest/nochanges/exists
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/nochanges/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/simple/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/simple/.osc/_meta:
--------------------------------------------------------------------------------
1 |
2 | Title example
3 | Description example
4 |
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/simple/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/simple/.osc/_package:
--------------------------------------------------------------------------------
1 | simple
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/simple/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/simple/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/simple/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/simple/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/simple/exists:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/commit_fixtures/osctest/simple/exists
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/simple/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/simple/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/osctest/simple/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testAddedMissing_cfilesremote:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testAddedMissing_filesremote:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testAddedMissing_lfilelist:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testAddedMissing_lfilelistwithSHA:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testAddedMissing_missingfilelist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testAddedMissing_missingfilelistwithSHA:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testAddedMissing_missingfilelistwithSHAsum:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testAddfile_lfilelist:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testAddfile_missingfilelist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testAllStates_missingfilelist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testDeletefile_cfilesremote:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testDeletefile_lfilelist:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testExpand_lfilelist:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testExpand_missingfilelist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testInterrupted_lfilelist:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testMultiple_lfilelist:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testMultiple_missingfilelist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testOpenRequests:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testPartial_lfilelist:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testPartial_missingfilelist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testSimple_lfilelist:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testSimple_lfilelistwithSHA:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testSimple_missingfilelist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testSimple_missingfilelistwithSHA:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/commit_fixtures/testSimple_missingfilelistwithSHAsum:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/conf_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/.osc/_packages:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/already_deleted/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/already_deleted/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/already_deleted/.osc/_package:
--------------------------------------------------------------------------------
1 | simple
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/already_deleted/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/already_deleted/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/already_deleted/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/already_deleted/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/already_deleted/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/already_deleted/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/already_deleted/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/already_deleted/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/already_deleted/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/already_deleted/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/.osc/_in_conflict:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/.osc/_package:
--------------------------------------------------------------------------------
1 | simple
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/foo:
--------------------------------------------------------------------------------
1 | <<<<<<< foo.mine
2 | This is no test.
3 | =======
4 | This is a simple test.
5 | >>>>>>> foo.r2
6 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/foo.mine:
--------------------------------------------------------------------------------
1 | This is no test.
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/foo.r2:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/conflict/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/delete/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/delete/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/delete/.osc/_package:
--------------------------------------------------------------------------------
1 | simple
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/delete/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/delete/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/delete/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/delete/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/delete/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/delete/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/delete/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/delete/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/delete/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/replace/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/replace/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/replace/.osc/_package:
--------------------------------------------------------------------------------
1 | simple
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/replace/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/replace/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | toadd1
2 | merge
3 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/replace/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/replace/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/replace/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/replace/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/replace/merge:
--------------------------------------------------------------------------------
1 | replaced
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/replace/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/replace/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/replace/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/simple/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/simple/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/simple/.osc/_package:
--------------------------------------------------------------------------------
1 | simple
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/simple/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/simple/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/simple/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/simple/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/simple/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/simple/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/simple/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/simple/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/simple/skipped_exists:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/simple/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/deletefile_fixtures/osctest/simple/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/.osc/_packages:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/binary/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/binary/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/binary/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/binary/.osc/_package:
--------------------------------------------------------------------------------
1 | binary
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/binary/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/binary/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | binary_added
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/binary/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | binary_deleted
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/binary/.osc/binary:
--------------------------------------------------------------------------------
1 | I'm a binary file
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/binary/.osc/binary_deleted:
--------------------------------------------------------------------------------
1 | I'm a deleted binary file
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/binary/binary:
--------------------------------------------------------------------------------
1 | I'm a binary file
2 | modified
3 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/binary/binary_added:
--------------------------------------------------------------------------------
1 | f bar
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localdelete/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localdelete/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localdelete/.osc/_package:
--------------------------------------------------------------------------------
1 | remote_localdelete
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localdelete/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localdelete/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | merge
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localdelete/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localdelete/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localdelete/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localdelete/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localdelete/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localdelete/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localmodified/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localmodified/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localmodified/.osc/_package:
--------------------------------------------------------------------------------
1 | remote_localmodified
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localmodified/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localmodified/.osc/binary:
--------------------------------------------------------------------------------
1 | I'm a binary file
2 | modified
3 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localmodified/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localmodified/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localmodified/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localmodified/binary:
--------------------------------------------------------------------------------
1 | I'm a binary file
2 | modified foo
3 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localmodified/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localmodified/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localmodified/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 | oh it does
3 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localmodified/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_localmodified/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple/.osc/_package:
--------------------------------------------------------------------------------
1 | remote_simple
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple/binary:
--------------------------------------------------------------------------------
1 | I'm a binary file
2 | modified
3 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple_noadd/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple_noadd/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple_noadd/.osc/_package:
--------------------------------------------------------------------------------
1 | remote_simple_noadd
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple_noadd/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple_noadd/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple_noadd/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple_noadd/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple_noadd/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple_noadd/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple_noadd/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/remote_simple_noadd/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/replaced/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/replaced/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/replaced/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/replaced/.osc/_package:
--------------------------------------------------------------------------------
1 | replaced
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/replaced/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/replaced/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | replaced
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/replaced/.osc/replaced:
--------------------------------------------------------------------------------
1 | yet another file
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/replaced/replaced:
--------------------------------------------------------------------------------
1 | foo replaced
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/.osc/_in_conflict:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/.osc/_package:
--------------------------------------------------------------------------------
1 | simple
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | toadd1
2 | replaced
3 | addedmissing
4 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | somefile
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/.osc/missing:
--------------------------------------------------------------------------------
1 | missing
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/.osc/replaced:
--------------------------------------------------------------------------------
1 | yet another file
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/.osc/somefile:
--------------------------------------------------------------------------------
1 | some content
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/foo:
--------------------------------------------------------------------------------
1 | <<<<<<< foo.mine
2 | This is no test.
3 | =======
4 | This is a simple test.
5 | >>>>>>> foo.r2
6 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/replaced:
--------------------------------------------------------------------------------
1 | foo replaced
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/osctest/simple/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/testDiffRemoteExistingLocalNotExisting_binary:
--------------------------------------------------------------------------------
1 | f bar
2 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/testDiffRemoteExistingLocalNotExisting_foobar:
--------------------------------------------------------------------------------
1 | foobar
2 | barfoo
3 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/testDiffRemoteMissingLocalDeleted_files:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/testDiffRemoteMissingLocalExisting_files:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/testDiffRemoteModified_merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/testDiffRemoteUnchangedLocalModified_binary:
--------------------------------------------------------------------------------
1 | I'm a binary file
2 | modified
3 |
--------------------------------------------------------------------------------
/tests/difffile_fixtures/testDiffRemoteUnchangedLocalModified_nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/fixtures/archive-no-ext_fnhdr.ar:
--------------------------------------------------------------------------------
1 | !
2 | dir/file/ 1724142481 1000 1000 100644 14 `
3 | file-in-a-dir
4 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/openSUSE:Tools/osc/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/openSUSE:Tools/osc/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/openSUSE:Tools/osc/.osc/_package:
--------------------------------------------------------------------------------
1 | osc
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/openSUSE:Tools/osc/.osc/_project:
--------------------------------------------------------------------------------
1 | openSUSE:Tools
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA-different-apiurl/pkgA/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://example.com
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA-different-apiurl/pkgA/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA-different-apiurl/pkgA/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA-different-apiurl/pkgA/.osc/_package:
--------------------------------------------------------------------------------
1 | pkgA
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA-different-apiurl/pkgA/.osc/_project:
--------------------------------------------------------------------------------
1 | projectA
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA-different-apiurl/pkgB/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://example.com
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA-different-apiurl/pkgB/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA-different-apiurl/pkgB/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA-different-apiurl/pkgB/.osc/_package:
--------------------------------------------------------------------------------
1 | pkgB
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA-different-apiurl/pkgB/.osc/_project:
--------------------------------------------------------------------------------
1 | projectA
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA/pkgA-symlink:
--------------------------------------------------------------------------------
1 | pkgA
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA/pkgA/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA/pkgA/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA/pkgA/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA/pkgA/.osc/_package:
--------------------------------------------------------------------------------
1 | pkgA
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA/pkgA/.osc/_project:
--------------------------------------------------------------------------------
1 | projectA
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA/pkgA/pkgA.changes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/fixtures/packages/osctest/projectA/pkgA/pkgA.changes
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA/pkgA/pkgA.spec:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/fixtures/packages/osctest/projectA/pkgA/pkgA.spec
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA/pkgB/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA/pkgB/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA/pkgB/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA/pkgB/.osc/_package:
--------------------------------------------------------------------------------
1 | pkgB
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectA/pkgB/.osc/_project:
--------------------------------------------------------------------------------
1 | projectA
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectB/pkgA/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectB/pkgA/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectB/pkgA/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectB/pkgA/.osc/_package:
--------------------------------------------------------------------------------
1 | pkgA
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectB/pkgA/.osc/_project:
--------------------------------------------------------------------------------
1 | projectB
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectB/pkgB/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectB/pkgB/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectB/pkgB/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectB/pkgB/.osc/_package:
--------------------------------------------------------------------------------
1 | pkgB
--------------------------------------------------------------------------------
/tests/fixtures/packages/osctest/projectB/pkgB/.osc/_project:
--------------------------------------------------------------------------------
1 | projectB
--------------------------------------------------------------------------------
/tests/init_package_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/init_project_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/osc:
--------------------------------------------------------------------------------
1 | ../osc
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/common-two-diff:
--------------------------------------------------------------------------------
1 | Index: common-two
2 | ===================================================================
3 | --- common-two 2013-01-18 19:18:38.225983117 +0000
4 | +++ common-two 2013-01-18 19:19:27.882082325 +0000
5 | @@ -1,4 +1,5 @@
6 | line one
7 | line two
8 | line three
9 | +an extra line
10 | last line
11 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/home:user:branches:some:project/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/home:user:branches:some:project/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/home:user:branches:some:project/.osc/_packages:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/home:user:branches:some:project/.osc/_project:
--------------------------------------------------------------------------------
1 | home:user:branches:some:project
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/home:user:branches:some:project/common-two:
--------------------------------------------------------------------------------
1 | line one
2 | line two
3 | line three
4 | an extra line
5 | last line
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/home:user:branches:some:project/directory:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/new:prj/common-two:
--------------------------------------------------------------------------------
1 | line one
2 | line two
3 | line three
4 | an extra line
5 | last line
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/new:prj/directory:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/no-requests:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/old:prj/common-two:
--------------------------------------------------------------------------------
1 | line one
2 | line two
3 | line three
4 | last line
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/old:prj/directory:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/.osc/_packages:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/.osc/_project:
--------------------------------------------------------------------------------
1 | home:user:branches:some:project
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/common-one/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/common-one/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/common-one/.osc/_package:
--------------------------------------------------------------------------------
1 | common-one
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/common-one/.osc/_project:
--------------------------------------------------------------------------------
1 | home:user:branches:some:project
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/common-one/.osc/common-one.spec:
--------------------------------------------------------------------------------
1 | contents are irrelevant
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/common-one/common-one.spec:
--------------------------------------------------------------------------------
1 | contents are irrelevant
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/common-two/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/common-two/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/common-two/.osc/_package:
--------------------------------------------------------------------------------
1 | common-two
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/common-two/.osc/_project:
--------------------------------------------------------------------------------
1 | home:user:branches:some:project
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/common-two/.osc/common-two.spec:
--------------------------------------------------------------------------------
1 | contents are irrelevant
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/osctest/common-two/common-two.spec:
--------------------------------------------------------------------------------
1 | contents are irrelevant
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/some:project/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/some:project/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/some:project/.osc/_packages:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/some:project/.osc/_project:
--------------------------------------------------------------------------------
1 | some:project
2 |
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/some:project/common-two:
--------------------------------------------------------------------------------
1 | line one
2 | line two
3 | line three
4 | an extra line
5 | last line
--------------------------------------------------------------------------------
/tests/prdiff_fixtures/some:project/directory:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/added/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/added/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/added/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/added/.osc/_package:
--------------------------------------------------------------------------------
1 | added
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/added/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/added/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | new
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/added/exists:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/project_package_status_fixtures/osctest/added/exists
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/added/new:
--------------------------------------------------------------------------------
1 | new
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/conflict/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/conflict/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/conflict/.osc/_in_conflict:
--------------------------------------------------------------------------------
1 | conflict
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/conflict/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/conflict/.osc/_package:
--------------------------------------------------------------------------------
1 | conflict
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/conflict/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/conflict/.osc/conflict:
--------------------------------------------------------------------------------
1 | This file did change.
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/conflict/.osc/test:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/conflict/conflict:
--------------------------------------------------------------------------------
1 | Inconflict
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/conflict/exists:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/project_package_status_fixtures/osctest/conflict/exists
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/conflict/test:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/deleted/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/deleted/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/deleted/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/deleted/.osc/_package:
--------------------------------------------------------------------------------
1 | deleted
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/deleted/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/deleted/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | modified
2 | test
3 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/deleted/.osc/modified:
--------------------------------------------------------------------------------
1 | This file did change.
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/deleted/.osc/test:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/excluded/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/excluded/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/excluded/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/excluded/.osc/_package:
--------------------------------------------------------------------------------
1 | excluded
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/excluded/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/excluded/.osc/modified:
--------------------------------------------------------------------------------
1 | This file did change.
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/excluded/.osc/test:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/excluded/_linkerror:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/project_package_status_fixtures/osctest/excluded/_linkerror
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/excluded/dir/file:
--------------------------------------------------------------------------------
1 | file
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/excluded/exists:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/project_package_status_fixtures/osctest/excluded/exists
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/excluded/foo.orig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/project_package_status_fixtures/osctest/excluded/foo.orig
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/excluded/modified:
--------------------------------------------------------------------------------
1 | modified
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/excluded/test:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/.osc/_package:
--------------------------------------------------------------------------------
1 | simple
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | add
2 | missing
3 | missing_added
4 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/.osc/missing:
--------------------------------------------------------------------------------
1 | missing
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/.osc/test:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/add:
--------------------------------------------------------------------------------
1 | added file
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/exists:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/project_package_status_fixtures/osctest/simple/exists
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/missing:
--------------------------------------------------------------------------------
1 | replaced
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/nochange:
--------------------------------------------------------------------------------
1 | This file did change.
2 |
--------------------------------------------------------------------------------
/tests/project_package_status_fixtures/osctest/simple/test:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/.osc/_packages:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/_packages:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/.osc/_buildconfig_prj_arch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/repairwc_fixtures/osctest/buildfiles/.osc/_buildconfig_prj_arch
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/.osc/_buildinfo_prj_arch.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/repairwc_fixtures/osctest/buildfiles/.osc/_buildinfo_prj_arch.xml
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/.osc/_in_conflict:
--------------------------------------------------------------------------------
1 | nochange
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/.osc/_package:
--------------------------------------------------------------------------------
1 | buildfiles
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/foobar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/repairwc_fixtures/osctest/buildfiles/foobar
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/buildfiles/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/invalid_apiurl/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | urlwithoutprotocolandtld
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/invalid_apiurl/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/invalid_apiurl/.osc/_meta:
--------------------------------------------------------------------------------
1 |
2 | Title of New Package
3 |
4 | LONG DESCRIPTION
5 | GOES
6 | HERE
7 |
8 |
9 |
10 | PUT_UPSTREAM_URL_HERE
11 |
12 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/invalid_apiurl/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/invalid_apiurl/.osc/_package:
--------------------------------------------------------------------------------
1 | invalid_apiurl
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/invalid_apiurl/.osc/_project:
--------------------------------------------------------------------------------
1 | remote
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/multiple/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/multiple/.osc/_in_conflict:
--------------------------------------------------------------------------------
1 | nochange
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/multiple/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/multiple/.osc/_package:
--------------------------------------------------------------------------------
1 | multiple
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/multiple/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/multiple/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/multiple/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 | nofilesentry
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/multiple/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/multiple/.osc/unknown_file:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/repairwc_fixtures/osctest/multiple/.osc/unknown_file
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/multiple/foobar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/repairwc_fixtures/osctest/multiple/foobar
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/multiple/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/multiple/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/multiple/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/noapiurl/.osc/_in_conflict:
--------------------------------------------------------------------------------
1 | nochange
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/noapiurl/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/noapiurl/.osc/_package:
--------------------------------------------------------------------------------
1 | noapiurl
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/noapiurl/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/noapiurl/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/noapiurl/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/noapiurl/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/noapiurl/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/noapiurl/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/noapiurl/foobar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/repairwc_fixtures/osctest/noapiurl/foobar
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/noapiurl/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/noapiurl/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/noapiurl/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple/.osc/_package:
--------------------------------------------------------------------------------
1 | simple
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple1/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple1/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple1/.osc/_package:
--------------------------------------------------------------------------------
1 | simple1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple1/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple1/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple1/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple1/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple1/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple1/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple1/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple1/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple2/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple2/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple2/.osc/_package:
--------------------------------------------------------------------------------
1 | simple2
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple2/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple2/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple2/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple2/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple2/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple2/.osc/somefile:
--------------------------------------------------------------------------------
1 | somefile
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple2/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple2/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple2/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple2/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple3/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple3/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple3/.osc/_package:
--------------------------------------------------------------------------------
1 | simple3
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple3/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple3/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple3/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple3/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple3/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple3/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple3/.osc/toadd1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/repairwc_fixtures/osctest/simple3/.osc/toadd1
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple3/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple3/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple3/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple3/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple4/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple4/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple4/.osc/_package:
--------------------------------------------------------------------------------
1 | working_nonempty
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple4/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple4/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 | remove
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple4/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple4/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple4/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple4/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple4/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple4/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple5/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple5/.osc/_in_conflict:
--------------------------------------------------------------------------------
1 | conflict
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple5/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple5/.osc/_package:
--------------------------------------------------------------------------------
1 | working_nonempty
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple5/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple5/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple5/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple5/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple5/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple5/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple5/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple5/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple6/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple6/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple6/.osc/_package:
--------------------------------------------------------------------------------
1 | simple6
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple6/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple6/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple6/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple6/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple6/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple6/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple6/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple6/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple7/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple7/.osc/_in_conflict:
--------------------------------------------------------------------------------
1 | nochange
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple7/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple7/.osc/_package:
--------------------------------------------------------------------------------
1 | simple7
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple7/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple7/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple7/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple7/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple7/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple7/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple7/foobar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/repairwc_fixtures/osctest/simple7/foobar
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple7/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple7/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple7/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple8/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple8/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple8/.osc/_package:
--------------------------------------------------------------------------------
1 | simple8
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple8/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple8/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple8/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple8/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple8/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple8/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple8/.osc/skipped:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/repairwc_fixtures/osctest/simple8/.osc/skipped
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple8/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple8/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/simple8/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_empty/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_empty/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_empty/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_empty/.osc/_package:
--------------------------------------------------------------------------------
1 | working_empty
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_empty/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_nonempty/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_nonempty/.osc/_in_conflict:
--------------------------------------------------------------------------------
1 | nochange
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_nonempty/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_nonempty/.osc/_package:
--------------------------------------------------------------------------------
1 | working_nonempty
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_nonempty/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_nonempty/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_nonempty/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_nonempty/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_nonempty/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_nonempty/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_nonempty/foobar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/repairwc_fixtures/osctest/working_nonempty/foobar
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_nonempty/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_nonempty/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/osctest/working_nonempty/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/prj_invalidapiurl/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | noschemeandnotld
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/prj_invalidapiurl/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/prj_invalidapiurl/.osc/_packages:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/prj_invalidapiurl/.osc/_project:
--------------------------------------------------------------------------------
1 | prj_invalidapiurl
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/prj_noapiurl/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/prj_noapiurl/.osc/_packages:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/repairwc_fixtures/prj_noapiurl/.osc/_project:
--------------------------------------------------------------------------------
1 | prj_noapiurl
2 |
--------------------------------------------------------------------------------
/tests/request_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/results_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/.osc/_packages:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
2 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/.osc/_in_conflict:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/.osc/_package:
--------------------------------------------------------------------------------
1 | simple
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/.osc/_to_be_added:
--------------------------------------------------------------------------------
1 | toadd1
2 | replaced
3 | addedmissing
4 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | somefile
2 | deleted
3 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/.osc/deleted:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/revertfile_fixtures/osctest/simple/.osc/deleted
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/.osc/missing:
--------------------------------------------------------------------------------
1 | missing
2 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/.osc/replaced:
--------------------------------------------------------------------------------
1 | yet another file
2 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/.osc/somefile:
--------------------------------------------------------------------------------
1 | some content
2 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/foo:
--------------------------------------------------------------------------------
1 | <<<<<<< foo.mine
2 | This is no test.
3 | =======
4 | This is a simple test.
5 | >>>>>>> foo.r2
6 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/replaced:
--------------------------------------------------------------------------------
1 | foo replaced
2 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/toadd1:
--------------------------------------------------------------------------------
1 | toadd1
2 |
--------------------------------------------------------------------------------
/tests/revertfile_fixtures/osctest/simple/toadd2:
--------------------------------------------------------------------------------
1 | toadd2
2 |
--------------------------------------------------------------------------------
/tests/setlinkrev_fixtures/link_with_rev:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/setlinkrev_fixtures/md5_rev_link:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/setlinkrev_fixtures/noproject_link:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/setlinkrev_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/setlinkrev_fixtures/rev_link:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/setlinkrev_fixtures/simple_filesremote:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests/setlinkrev_fixtures/simple_link:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/meta.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/tests/update_fixtures/oscrc:
--------------------------------------------------------------------------------
1 | [general]
2 | apiurl = http://localhost
3 |
4 | [http://localhost]
5 | user=Admin
6 | pass=opensuse
7 | allow_http=1
8 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/.osc/_packages:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/already_in_conflict/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/already_in_conflict/.osc/_in_conflict:
--------------------------------------------------------------------------------
1 | merge
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/already_in_conflict/.osc/_meta:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/already_in_conflict/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/already_in_conflict/.osc/_package:
--------------------------------------------------------------------------------
1 | already_in_conflict
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/already_in_conflict/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/already_in_conflict/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/already_in_conflict/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/already_in_conflict/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/already_in_conflict/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/already_in_conflict/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | I hope so...
3 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/already_in_conflict/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/conflict/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/conflict/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/conflict/.osc/_package:
--------------------------------------------------------------------------------
1 | conflict
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/conflict/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/conflict/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/conflict/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/conflict/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/conflict/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/conflict/merge:
--------------------------------------------------------------------------------
1 | Is it possible
2 | to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/conflict/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/deleted/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/deleted/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/deleted/.osc/_package:
--------------------------------------------------------------------------------
1 | deleted
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/deleted/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/deleted/.osc/_to_be_deleted:
--------------------------------------------------------------------------------
1 | merge
2 | foo
3 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/deleted/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/deleted/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/deleted/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/deleted/merge:
--------------------------------------------------------------------------------
1 | Is it possible to,
2 | merge this file?
3 | I hope so...
4 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/deleted/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize/.osc/_package:
--------------------------------------------------------------------------------
1 | limitsize
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize_local/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize_local/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize_local/.osc/_package:
--------------------------------------------------------------------------------
1 | limitsize_local
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize_local/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize_local/.osc/_size_limit:
--------------------------------------------------------------------------------
1 | 30
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize_local/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize_local/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize_local/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize_local/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize_local/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/limitsize_local/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/metamode/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/metamode/.osc/_meta_mode:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/update_fixtures/osctest/metamode/.osc/_meta_mode
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/metamode/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/metamode/.osc/_package:
--------------------------------------------------------------------------------
1 | metamode
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/metamode/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/metamode/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/metamode/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/metamode/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/metamode/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/metamode/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/metamode/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/new/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/new/.osc/_files:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/new/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/new/.osc/_package:
--------------------------------------------------------------------------------
1 | new
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/new/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/restore/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/restore/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/restore/.osc/_package:
--------------------------------------------------------------------------------
1 | restore
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/restore/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/restore/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/restore/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/restore/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/restore/exists:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/update_fixtures/osctest/restore/exists
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/restore/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/restore/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/.osc/_in_update/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/.osc/_meta:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/.osc/_package:
--------------------------------------------------------------------------------
1 | simple
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/.osc/added:
--------------------------------------------------------------------------------
1 | This is a test
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/added:
--------------------------------------------------------------------------------
1 | This is a test
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/exists:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/update_fixtures/osctest/resume/exists
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/.osc/_in_update/foo:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/.osc/_meta:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/.osc/_package:
--------------------------------------------------------------------------------
1 | simple
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/.osc/added:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/update_fixtures/osctest/resume_deleted/.osc/added
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/.osc/foo:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/.osc/merge:
--------------------------------------------------------------------------------
1 | xxx
2 | xxx
3 | yyy
4 | zzz
5 | zzz
6 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/added:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/update_fixtures/osctest/resume_deleted/added
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/exists:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/update_fixtures/osctest/resume_deleted/exists
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/f:
--------------------------------------------------------------------------------
1 | This is a test
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/foo:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/merge:
--------------------------------------------------------------------------------
1 | xxx
2 | xxx
3 | yyy
4 | zzz
5 | zzz
6 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/resume_deleted/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/services/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/services/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/services/.osc/_package:
--------------------------------------------------------------------------------
1 | services
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/services/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/services/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/services/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/services/_service:exists:
--------------------------------------------------------------------------------
1 | another service
2 | foo
3 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/services/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/services/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/simple/.osc/_apiurl:
--------------------------------------------------------------------------------
1 | http://localhost
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/simple/.osc/_osclib_version:
--------------------------------------------------------------------------------
1 | 1.0
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/simple/.osc/_package:
--------------------------------------------------------------------------------
1 | simple
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/simple/.osc/_project:
--------------------------------------------------------------------------------
1 | osctest
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/simple/.osc/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/simple/.osc/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/simple/.osc/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/simple/exists:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openSUSE/osc/e7779e8d59964300dfb24e5d4128da8f0a8e7814/tests/update_fixtures/osctest/simple/exists
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/simple/foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/simple/merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/osctest/simple/nochange:
--------------------------------------------------------------------------------
1 | This file didn't change but
2 | is modified.
3 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateAlreadyInConflict_merge:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateConflict_merge:
--------------------------------------------------------------------------------
1 | Is
2 | it possible to
3 | merge this file?
4 | We'll see.
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateDeletedFile_files:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateLimitSizeAddDelete_exists:
--------------------------------------------------------------------------------
1 | small
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateLocalDeletions_foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 | And an update
3 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateLocalDeletions_merge:
--------------------------------------------------------------------------------
1 | Is
2 | it possible to
3 | merge this file?
4 | We'll see. Foo
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateMetaMode__meta:
--------------------------------------------------------------------------------
1 |
2 | foo
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateMetaMode_filesremote:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateNewFileLocalExists_exists:
--------------------------------------------------------------------------------
1 | exists
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateNewFile_upstream_added:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateNew_filesremote:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateRestore_foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateResumeDeletedFile_foo:
--------------------------------------------------------------------------------
1 | This is a simple test.
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateResumeDeletedFile_merge:
--------------------------------------------------------------------------------
1 | Is it
2 | possible to
3 | merge this file?
4 | I hope so...
5 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateResume_foo:
--------------------------------------------------------------------------------
1 | foobar
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateResume_merge:
--------------------------------------------------------------------------------
1 | xxx
2 | xxx
3 | yyy
4 | zzz
5 | zzz
6 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateServiceFilesAddDelete__service:bar:
--------------------------------------------------------------------------------
1 | another service
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateServiceFilesAddDelete__service:foo:
--------------------------------------------------------------------------------
1 | small
2 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateServiceFilesAddDelete_bigfile:
--------------------------------------------------------------------------------
1 | This is a file
2 | with a lot of
3 | text. Foo foo
4 | bar bar bar.
5 | foobarfoobar
6 |
--------------------------------------------------------------------------------
/tests/update_fixtures/testUpdateUpstreamModifiedFile_foo:
--------------------------------------------------------------------------------
1 |
2 | This is a simple test.
3 |
4 |
--------------------------------------------------------------------------------