mirror of
https://github.com/martinvonz/jj.git
synced 2024-12-28 07:20:11 +00:00
73f20c8696
With this patch, the simple delegating helpers are gone from `Transaction`.
67 lines
2.6 KiB
Rust
67 lines
2.6 KiB
Rust
// Copyright 2020 Google LLC
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
use jujube_lib::repo::ReadonlyRepo;
|
|
use jujube_lib::testutils;
|
|
|
|
#[test]
|
|
fn test_init_local() {
|
|
let settings = testutils::user_settings();
|
|
let temp_dir = tempfile::tempdir().unwrap();
|
|
let wc_path = temp_dir.path().to_owned();
|
|
let repo = ReadonlyRepo::init_local(&settings, wc_path.clone());
|
|
assert!(repo.store().git_repo().is_none());
|
|
assert_eq!(repo.working_copy_path(), &wc_path);
|
|
assert_eq!(repo.repo_path(), &wc_path.join(".jj"));
|
|
|
|
// Just test that we write a commit to the store
|
|
let mut tx = repo.start_transaction("test");
|
|
testutils::create_random_commit(&settings, &repo).write_to_repo(tx.mut_repo());
|
|
tx.discard();
|
|
}
|
|
|
|
#[test]
|
|
fn test_init_internal_git() {
|
|
let settings = testutils::user_settings();
|
|
let temp_dir = tempfile::tempdir().unwrap();
|
|
let wc_path = temp_dir.path().to_owned();
|
|
let repo = ReadonlyRepo::init_internal_git(&settings, wc_path.clone());
|
|
assert!(repo.store().git_repo().is_some());
|
|
assert_eq!(repo.working_copy_path(), &wc_path);
|
|
assert_eq!(repo.repo_path(), &wc_path.join(".jj"));
|
|
|
|
// Just test that we write a commit to the store
|
|
let mut tx = repo.start_transaction("test");
|
|
testutils::create_random_commit(&settings, &repo).write_to_repo(tx.mut_repo());
|
|
tx.discard();
|
|
}
|
|
|
|
#[test]
|
|
fn test_init_external_git() {
|
|
let settings = testutils::user_settings();
|
|
let temp_dir = tempfile::tempdir().unwrap();
|
|
let git_repo_path = temp_dir.path().join("git");
|
|
git2::Repository::init(&git_repo_path).unwrap();
|
|
let wc_path = temp_dir.path().join("jj");
|
|
std::fs::create_dir(&wc_path).unwrap();
|
|
let repo = ReadonlyRepo::init_external_git(&settings, wc_path.clone(), git_repo_path);
|
|
assert!(repo.store().git_repo().is_some());
|
|
assert_eq!(repo.working_copy_path(), &wc_path);
|
|
assert_eq!(repo.repo_path(), &wc_path.join(".jj"));
|
|
|
|
// Just test that we write a commit to the store
|
|
let mut tx = repo.start_transaction("test");
|
|
testutils::create_random_commit(&settings, &repo).write_to_repo(tx.mut_repo());
|
|
tx.discard();
|
|
}
|