mixtape-tools 0.4.0

Ready-to-use tool implementations for the mixtape agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
//! Write query tool

use crate::prelude::*;
use crate::sqlite::error::SqliteToolError;
use crate::sqlite::manager::with_connection;
use crate::sqlite::types::json_to_sql;

/// Input for write query execution
#[derive(Debug, Deserialize, JsonSchema)]
pub struct WriteQueryInput {
    /// SQL query to execute (INSERT, UPDATE, DELETE)
    pub query: String,

    /// Query parameters for prepared statements
    #[serde(default)]
    pub params: Vec<serde_json::Value>,

    /// Database file path. If not specified, uses the default database.
    #[serde(default)]
    pub db_path: Option<String>,
}

/// Write query result
#[derive(Debug, Serialize, JsonSchema)]
struct WriteResult {
    status: String,
    rows_affected: usize,
    last_insert_rowid: Option<i64>,
}

/// Tool for executing data modification queries (DESTRUCTIVE)
///
/// Executes INSERT, UPDATE, and DELETE queries.
/// Returns the number of rows affected and last insert rowid (for INSERT).
pub struct WriteQueryTool;

impl WriteQueryTool {
    /// Validates that a query is a write operation
    fn is_write_query(sql: &str) -> bool {
        let normalized = sql.trim().to_uppercase();
        let write_prefixes = ["INSERT", "UPDATE", "DELETE", "REPLACE"];
        write_prefixes
            .iter()
            .any(|prefix| normalized.starts_with(prefix))
    }
}

impl Tool for WriteQueryTool {
    type Input = WriteQueryInput;

    fn name(&self) -> &str {
        "sqlite_write_query"
    }

    fn description(&self) -> &str {
        "Execute a data modification SQL query (INSERT, UPDATE, DELETE). Returns the number of rows affected."
    }

    async fn execute(&self, input: Self::Input) -> Result<ToolResult, ToolError> {
        // Validate query is a write operation
        if !Self::is_write_query(&input.query) {
            return Err(SqliteToolError::InvalidQuery(
                "Only INSERT, UPDATE, DELETE, and REPLACE queries are allowed. Use sqlite_read_query for SELECT or sqlite_schema_query for DDL.".to_string()
            ).into());
        }

        let query = input.query;
        let params = input.params;

        let result = with_connection(input.db_path, move |conn| {
            // Convert params to rusqlite values
            let params_ref: Vec<Box<dyn rusqlite::ToSql>> =
                params.iter().map(|v| json_to_sql(v)).collect();

            let params_slice: Vec<&dyn rusqlite::ToSql> =
                params_ref.iter().map(|b| b.as_ref()).collect();

            let rows_affected = conn.execute(&query, params_slice.as_slice())?;

            // Get last insert rowid for INSERT queries
            let last_insert_rowid = if query.trim().to_uppercase().starts_with("INSERT") {
                Some(conn.last_insert_rowid())
            } else {
                None
            };

            Ok(WriteResult {
                status: "success".to_string(),
                rows_affected,
                last_insert_rowid,
            })
        })
        .await?;

        Ok(ToolResult::Json(serde_json::to_value(result)?))
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::sqlite::test_utils::{unwrap_json, TestDatabase};
    use mixtape_core::tool::Tool;

    #[tokio::test]
    async fn test_write_query_insert() {
        let db =
            TestDatabase::with_schema("CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT)")
                .await;

        let tool = WriteQueryTool;
        let result = tool
            .execute(WriteQueryInput {
                query: "INSERT INTO users (name) VALUES (?)".to_string(),
                params: vec![serde_json::json!("Alice")],
                db_path: Some(db.key()),
            })
            .await
            .unwrap();

        let json = unwrap_json(result);
        assert_eq!(json["rows_affected"], 1);
        assert!(json["last_insert_rowid"].as_i64().is_some());
    }

    #[tokio::test]
    async fn test_write_query_update() {
        let db = TestDatabase::with_schema(
            "CREATE TABLE users (id INTEGER, name TEXT);
             INSERT INTO users VALUES (1, 'Alice');
             INSERT INTO users VALUES (2, 'Bob');",
        )
        .await;

        let tool = WriteQueryTool;
        let result = tool
            .execute(WriteQueryInput {
                query: "UPDATE users SET name = 'Updated'".to_string(),
                params: vec![],
                db_path: Some(db.key()),
            })
            .await
            .unwrap();

        let json = unwrap_json(result);
        assert_eq!(json["rows_affected"], 2);
    }

    #[tokio::test]
    async fn test_reject_select_query() {
        let db = TestDatabase::new().await;

        let result = WriteQueryTool
            .execute(WriteQueryInput {
                query: "SELECT * FROM users".to_string(),
                params: vec![],
                db_path: Some(db.key()),
            })
            .await;
        assert!(result.is_err());
    }

    #[test]
    fn test_is_write_query() {
        assert!(WriteQueryTool::is_write_query(
            "INSERT INTO users VALUES (1)"
        ));
        assert!(WriteQueryTool::is_write_query(
            "UPDATE users SET name = 'x'"
        ));
        assert!(WriteQueryTool::is_write_query("DELETE FROM users"));
        assert!(WriteQueryTool::is_write_query(
            "REPLACE INTO users VALUES (1)"
        ));

        assert!(!WriteQueryTool::is_write_query("SELECT * FROM users"));
        assert!(!WriteQueryTool::is_write_query(
            "CREATE TABLE users (id INT)"
        ));
        assert!(!WriteQueryTool::is_write_query("DROP TABLE users"));
    }

    #[test]
    fn test_tool_metadata() {
        let tool = WriteQueryTool;
        assert_eq!(tool.name(), "sqlite_write_query");
        assert!(!tool.description().is_empty());
    }

    #[tokio::test]
    async fn test_write_query_delete() {
        let db = TestDatabase::with_schema(
            "CREATE TABLE users (id INTEGER, name TEXT);
             INSERT INTO users VALUES (1, 'Alice');
             INSERT INTO users VALUES (2, 'Bob');
             INSERT INTO users VALUES (3, 'Charlie');",
        )
        .await;

        let result = WriteQueryTool
            .execute(WriteQueryInput {
                query: "DELETE FROM users WHERE id > 1".to_string(),
                params: vec![],
                db_path: Some(db.key()),
            })
            .await
            .unwrap();

        let json = unwrap_json(result);
        assert_eq!(json["status"], "success");
        assert_eq!(json["rows_affected"], 2);
        assert!(json["last_insert_rowid"].is_null());
        assert_eq!(db.count("users"), 1);
    }

    #[tokio::test]
    async fn test_write_query_delete_all() {
        let db = TestDatabase::with_schema(
            "CREATE TABLE users (id INTEGER, name TEXT);
             INSERT INTO users VALUES (1, 'Alice');
             INSERT INTO users VALUES (2, 'Bob');",
        )
        .await;

        let result = WriteQueryTool
            .execute(WriteQueryInput {
                query: "DELETE FROM users".to_string(),
                params: vec![],
                db_path: Some(db.key()),
            })
            .await
            .unwrap();

        let json = unwrap_json(result);
        assert_eq!(json["rows_affected"], 2);
    }

    #[tokio::test]
    async fn test_write_query_replace() {
        let db = TestDatabase::with_schema(
            "CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT);
             INSERT INTO users VALUES (1, 'Alice');",
        )
        .await;

        let result = WriteQueryTool
            .execute(WriteQueryInput {
                query: "REPLACE INTO users VALUES (1, 'Updated Alice')".to_string(),
                params: vec![],
                db_path: Some(db.key()),
            })
            .await
            .unwrap();

        let json = unwrap_json(result);
        assert_eq!(json["status"], "success");
        assert_eq!(json["rows_affected"], 1);

        // Verify replacement
        let rows = db.query("SELECT name FROM users WHERE id = 1");
        assert_eq!(rows[0][0], "Updated Alice");
        assert_eq!(db.count("users"), 1);
    }

    #[tokio::test]
    async fn test_write_query_replace_new_row() {
        let db = TestDatabase::with_schema(
            "CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT);
             INSERT INTO users VALUES (1, 'Alice');",
        )
        .await;

        let result = WriteQueryTool
            .execute(WriteQueryInput {
                query: "REPLACE INTO users VALUES (2, 'Bob')".to_string(),
                params: vec![],
                db_path: Some(db.key()),
            })
            .await
            .unwrap();

        let json = unwrap_json(result);
        assert_eq!(json["rows_affected"], 1);
        assert_eq!(db.count("users"), 2);
    }

    #[tokio::test]
    async fn test_write_query_parameterized_insert() {
        let db = TestDatabase::with_schema(
            "CREATE TABLE data (id INTEGER, name TEXT, score REAL, active INTEGER)",
        )
        .await;

        let result = WriteQueryTool
            .execute(WriteQueryInput {
                query: "INSERT INTO data VALUES (?, ?, ?, ?)".to_string(),
                params: vec![
                    serde_json::json!(1),
                    serde_json::json!("Alice"),
                    serde_json::json!(95.5),
                    serde_json::json!(true),
                ],
                db_path: Some(db.key()),
            })
            .await
            .unwrap();

        let json = unwrap_json(result);
        assert_eq!(json["rows_affected"], 1);

        // Verify data
        let rows = db.query("SELECT name, score, active FROM data WHERE id = 1");
        assert_eq!(rows[0][0], "Alice");
        assert_eq!(rows[0][2], 1); // true -> 1
    }

    #[tokio::test]
    async fn test_write_query_parameterized_update() {
        let db = TestDatabase::with_schema(
            "CREATE TABLE users (id INTEGER, name TEXT);
             INSERT INTO users VALUES (1, 'Alice');
             INSERT INTO users VALUES (2, 'Bob');",
        )
        .await;

        let result = WriteQueryTool
            .execute(WriteQueryInput {
                query: "UPDATE users SET name = ? WHERE id = ?".to_string(),
                params: vec![serde_json::json!("Updated"), serde_json::json!(1)],
                db_path: Some(db.key()),
            })
            .await
            .unwrap();

        let json = unwrap_json(result);
        assert_eq!(json["rows_affected"], 1);
        assert!(json["last_insert_rowid"].is_null());

        let rows = db.query("SELECT name FROM users WHERE id = 1");
        assert_eq!(rows[0][0], "Updated");
    }

    #[tokio::test]
    async fn test_write_query_parameterized_delete() {
        let db = TestDatabase::with_schema(
            "CREATE TABLE users (id INTEGER, name TEXT);
             INSERT INTO users VALUES (1, 'Alice');
             INSERT INTO users VALUES (2, 'Bob');
             INSERT INTO users VALUES (3, 'Charlie');",
        )
        .await;

        let result = WriteQueryTool
            .execute(WriteQueryInput {
                query: "DELETE FROM users WHERE name = ?".to_string(),
                params: vec![serde_json::json!("Bob")],
                db_path: Some(db.key()),
            })
            .await
            .unwrap();

        let json = unwrap_json(result);
        assert_eq!(json["rows_affected"], 1);
        assert_eq!(db.count("users"), 2);
    }

    #[tokio::test]
    async fn test_write_query_null_parameter() {
        let db = TestDatabase::with_schema("CREATE TABLE users (id INTEGER, name TEXT)").await;

        let result = WriteQueryTool
            .execute(WriteQueryInput {
                query: "INSERT INTO users VALUES (?, ?)".to_string(),
                params: vec![serde_json::json!(1), serde_json::Value::Null],
                db_path: Some(db.key()),
            })
            .await
            .unwrap();

        let json = unwrap_json(result);
        assert_eq!(json["rows_affected"], 1);

        let rows = db.query("SELECT name FROM users WHERE id = 1");
        assert!(rows[0][0].is_null());
    }

    #[tokio::test]
    async fn test_write_query_json_object_parameter() {
        let db = TestDatabase::with_schema("CREATE TABLE data (id INTEGER, metadata TEXT)").await;

        let result = WriteQueryTool
            .execute(WriteQueryInput {
                query: "INSERT INTO data VALUES (?, ?)".to_string(),
                params: vec![
                    serde_json::json!(1),
                    serde_json::json!({"key": "value", "count": 42}),
                ],
                db_path: Some(db.key()),
            })
            .await
            .unwrap();

        let json = unwrap_json(result);
        assert_eq!(json["rows_affected"], 1);

        let rows = db.query("SELECT metadata FROM data WHERE id = 1");
        let parsed: serde_json::Value = serde_json::from_str(rows[0][0].as_str().unwrap()).unwrap();
        assert_eq!(parsed["key"], "value");
        assert_eq!(parsed["count"], 42);
    }

    #[tokio::test]
    async fn test_write_query_no_rows_affected() {
        let db = TestDatabase::with_schema(
            "CREATE TABLE users (id INTEGER, name TEXT);
             INSERT INTO users VALUES (1, 'Alice');",
        )
        .await;

        let result = WriteQueryTool
            .execute(WriteQueryInput {
                query: "DELETE FROM users WHERE id = 999".to_string(),
                params: vec![],
                db_path: Some(db.key()),
            })
            .await
            .unwrap();

        let json = unwrap_json(result);
        assert_eq!(json["status"], "success");
        assert_eq!(json["rows_affected"], 0);
    }

    #[tokio::test]
    async fn test_update_no_last_insert_rowid() {
        let db = TestDatabase::with_schema(
            "CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT);
             INSERT INTO users VALUES (1, 'Alice');",
        )
        .await;

        let result = WriteQueryTool
            .execute(WriteQueryInput {
                query: "UPDATE users SET name = 'Updated' WHERE id = 1".to_string(),
                params: vec![],
                db_path: Some(db.key()),
            })
            .await
            .unwrap();

        let json = unwrap_json(result);
        assert!(json["last_insert_rowid"].is_null());
    }
}