1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
use crate::jcli::command::KeyCommand;
use assert_cmd::assert::OutputAssertExt;
use assert_fs::{fixture::FileWriteStr, NamedTempFile};
use jortestkit::prelude::ProcessOutput;
use std::path::Path;
const DEFAULT_KEY_TYPE: &str = "ed25519-extended";

pub struct Key {
    key_command: KeyCommand,
}

impl Key {
    pub fn new(key_command: KeyCommand) -> Self {
        Self { key_command }
    }

    pub fn generate_default(self) -> String {
        self.generate(DEFAULT_KEY_TYPE)
    }

    pub fn generate<S: Into<String>>(self, key_type: S) -> String {
        self.key_command
            .generate()
            .key_type(key_type.into())
            .build()
            .assert()
            .success()
            .get_output()
            .as_single_line()
    }

    pub fn generate_expect_fail<S: Into<String>>(self, key_type: S, expected_msg_path: &str) {
        self.key_command
            .generate()
            .key_type(key_type.into())
            .build()
            .assert()
            .failure()
            .stderr(predicates::str::contains(expected_msg_path));
    }

    pub fn generate_with_seed<S: Into<String>>(self, key_type: S, seed: S) -> String {
        self.key_command
            .generate()
            .key_type(key_type.into())
            .seed(seed.into())
            .build()
            .assert()
            .success()
            .get_output()
            .as_single_line()
    }

    pub fn generate_with_seed_expect_fail<S: Into<String>>(
        self,
        key_type: S,
        seed: S,
        expected_msg_path: &str,
    ) {
        self.key_command
            .generate()
            .key_type(key_type.into())
            .seed(seed.into())
            .build()
            .assert()
            .failure()
            .stderr(predicates::str::contains(expected_msg_path));
    }

    pub fn convert_to_public_string<S: Into<String>>(self, private_key: S) -> String {
        let input_file = NamedTempFile::new("key_to_public.input").unwrap();
        input_file.write_str(&private_key.into()).unwrap();

        self.key_command
            .to_public()
            .input(input_file.path())
            .build()
            .assert()
            .success()
            .get_output()
            .as_single_line()
    }

    pub fn convert_to_public_string_expect_fail<S: Into<String>>(
        self,
        private_key: S,
        expected_msg_path: &str,
    ) {
        let input_file = NamedTempFile::new("key_to_public.input").unwrap();
        input_file.write_str(&private_key.into()).unwrap();

        self.key_command
            .to_public()
            .input(input_file.path())
            .build()
            .assert()
            .failure()
            .stderr(predicates::str::contains(expected_msg_path));
    }

    pub fn dump_bytes_to_file<S: Into<String>, P: AsRef<Path>>(self, private_key: S, output: P) {
        let input = NamedTempFile::new("key_to_bytes.input").unwrap();
        input.write_str(&private_key.into()).unwrap();

        self.convert_to_bytes_file(input.path(), output.as_ref())
    }

    pub fn convert_to_bytes_file<P: AsRef<Path>, Q: AsRef<Path>>(self, input: P, output: Q) {
        self.key_command
            .to_bytes()
            .output(output)
            .input(input)
            .build()
            .assert()
            .success();
    }

    pub fn convert_to_bytes_file_expect_fail<P: AsRef<Path>, Q: AsRef<Path>>(
        self,
        input: P,
        output: Q,
        expected_msg_path: &str,
    ) {
        self.key_command
            .to_bytes()
            .output(output)
            .input(input)
            .build()
            .assert()
            .failure()
            .stderr(predicates::str::contains(expected_msg_path));
    }

    pub fn convert_from_bytes_string<P: AsRef<Path>, S: Into<String>>(
        self,
        key_type: S,
        input: P,
    ) -> String {
        self.key_command
            .from_bytes()
            .key_type(key_type)
            .input(input)
            .build()
            .assert()
            .success()
            .get_output()
            .as_single_line()
    }

    pub fn convert_from_bytes_string_expect_fail<P: AsRef<Path>, S: Into<String>>(
        self,
        key_type: S,
        input: P,
        expected_msg_path: &str,
    ) {
        self.key_command
            .from_bytes()
            .key_type(key_type)
            .input(input)
            .build()
            .assert()
            .failure()
            .stderr(predicates::str::contains(expected_msg_path));
    }
}