feed-the-machine 1.3.1 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/README.md +82 -180
  2. package/ftm-git/SKILL.md +0 -1
  3. package/ftm-map/SKILL.md +46 -14
  4. package/ftm-map/scripts/db.py +439 -118
  5. package/ftm-map/scripts/index.py +128 -54
  6. package/ftm-map/scripts/parser.py +89 -320
  7. package/ftm-map/scripts/queries/go-tags.scm +20 -0
  8. package/ftm-map/scripts/queries/javascript-tags.scm +19 -7
  9. package/ftm-map/scripts/queries/python-tags.scm +22 -8
  10. package/ftm-map/scripts/queries/ruby-tags.scm +19 -0
  11. package/ftm-map/scripts/queries/rust-tags.scm +37 -0
  12. package/ftm-map/scripts/queries/typescript-tags.scm +20 -8
  13. package/ftm-map/scripts/query.py +176 -24
  14. package/ftm-map/scripts/ranker.py +377 -0
  15. package/ftm-map/scripts/requirements.txt +3 -0
  16. package/ftm-map/scripts/setup.sh +11 -0
  17. package/ftm-map/scripts/test_db.py +355 -115
  18. package/ftm-map/scripts/test_parser.py +169 -101
  19. package/ftm-map/scripts/test_query.py +178 -61
  20. package/ftm-map/scripts/test_ranker.py +199 -0
  21. package/ftm-map/scripts/views.py +107 -61
  22. package/ftm-mind/references/event-registry.md +0 -10
  23. package/hooks/ftm-blackboard-enforcer.sh +1 -4
  24. package/package.json +1 -1
  25. package/ftm-inbox/backend/__pycache__/main.cpython-314.pyc +0 -0
  26. package/ftm-inbox/backend/planner/__pycache__/__init__.cpython-314.pyc +0 -0
  27. package/ftm-inbox/backend/planner/__pycache__/generator.cpython-314.pyc +0 -0
  28. package/ftm-inbox/backend/planner/__pycache__/schema.cpython-314.pyc +0 -0
  29. package/ftm-inbox/backend/routes/__pycache__/plan.cpython-314.pyc +0 -0
  30. package/ftm-map/scripts/tests/fixtures/__init__.py +0 -0
  31. package/ftm-map/scripts/tests/fixtures/sample_project/api.ts +0 -16
  32. package/ftm-map/scripts/tests/fixtures/sample_project/auth.py +0 -15
  33. package/ftm-map/scripts/tests/fixtures/sample_project/utils.js +0 -16
@@ -1,124 +1,364 @@
1
- """Tests for ftm-map database module."""
1
+ """Tests for db.py -- 5-table schema with FTS5."""
2
2
  import os
3
3
  import sys
4
4
  import tempfile
5
- import unittest
5
+ import pytest
6
6
 
7
7
  sys.path.insert(0, os.path.dirname(__file__))
8
8
  from db import (
9
- get_connection, add_symbol, remove_symbols_by_file, add_edge,
10
- get_symbol_by_id, get_symbol_by_name, get_transitive_deps,
11
- get_reverse_deps, fts_search, get_stats
9
+ get_connection,
10
+ add_file,
11
+ get_file_by_path,
12
+ remove_file,
13
+ add_symbol,
14
+ get_symbol_by_id,
15
+ get_symbol_by_name,
16
+ get_symbols_by_file,
17
+ add_reference,
18
+ get_references_by_file,
19
+ rebuild_file_edges,
20
+ rebuild_symbol_edges,
21
+ add_edge,
22
+ get_transitive_deps,
23
+ get_reverse_deps,
24
+ fts_search,
25
+ get_stats,
26
+ hash_content,
27
+ remove_symbols_by_file,
12
28
  )
13
29
 
14
- class TestDatabase(unittest.TestCase):
15
- def setUp(self):
16
- self.tmpdir = tempfile.mkdtemp()
17
- self.conn = get_connection(self.tmpdir)
18
-
19
- def tearDown(self):
20
- self.conn.close()
21
-
22
- def test_schema_creation(self):
23
- """Tables and indexes should exist after connection."""
24
- tables = [r[0] for r in self.conn.execute(
25
- "SELECT name FROM sqlite_master WHERE type='table'"
26
- ).fetchall()]
27
- self.assertIn("symbols", tables)
28
- self.assertIn("edges", tables)
29
- self.assertIn("symbols_fts", tables)
30
-
31
- def test_wal_mode(self):
32
- """WAL mode should be enabled."""
33
- mode = self.conn.execute("PRAGMA journal_mode").fetchone()[0]
34
- self.assertEqual(mode, "wal")
35
-
36
- def test_add_and_get_symbol(self):
37
- """Should insert and retrieve a symbol."""
38
- sid = add_symbol(self.conn, "handleAuth", "function", "auth.py", 1, 5, "def handleAuth(request)", "Auth handler", "abc123")
39
- self.conn.commit()
40
- sym = get_symbol_by_id(self.conn, sid)
41
- self.assertIsNotNone(sym)
42
- self.assertEqual(sym["name"], "handleAuth")
43
- self.assertEqual(sym["kind"], "function")
44
-
45
- def test_remove_symbols_by_file(self):
46
- """Should remove all symbols for a file."""
47
- add_symbol(self.conn, "foo", "function", "test.py", 1, 3)
48
- add_symbol(self.conn, "bar", "function", "test.py", 5, 8)
49
- add_symbol(self.conn, "baz", "function", "other.py", 1, 3)
50
- self.conn.commit()
51
- remove_symbols_by_file(self.conn, "test.py")
52
- self.conn.commit()
53
- self.assertEqual(len(get_symbol_by_name(self.conn, "foo")), 0)
54
- self.assertEqual(len(get_symbol_by_name(self.conn, "baz")), 1)
55
-
56
- def test_edges_and_cascade(self):
57
- """Edges should be deleted when source symbol is removed."""
58
- s1 = add_symbol(self.conn, "caller", "function", "a.py", 1, 5)
59
- s2 = add_symbol(self.conn, "callee", "function", "b.py", 1, 5)
60
- add_edge(self.conn, s1, s2, "calls")
61
- self.conn.commit()
62
- remove_symbols_by_file(self.conn, "a.py")
63
- self.conn.commit()
64
- edges = self.conn.execute("SELECT * FROM edges").fetchall()
65
- self.assertEqual(len(edges), 0)
66
-
67
- def test_transitive_deps(self):
68
- """Should return transitive dependency chain."""
69
- # A calls B, B calls C
70
- a = add_symbol(self.conn, "A", "function", "a.py", 1, 5)
71
- b = add_symbol(self.conn, "B", "function", "b.py", 1, 5)
72
- c = add_symbol(self.conn, "C", "function", "c.py", 1, 5)
73
- add_edge(self.conn, a, b, "calls")
74
- add_edge(self.conn, b, c, "calls")
75
- self.conn.commit()
76
- deps = get_transitive_deps(self.conn, a)
30
+
31
+ @pytest.fixture
32
+ def conn():
33
+ with tempfile.TemporaryDirectory() as tmp:
34
+ c = get_connection(tmp)
35
+ yield c
36
+ c.close()
37
+
38
+
39
+ @pytest.fixture
40
+ def populated_conn(conn):
41
+ """Conn with 3 files, symbols, and references for graph tests."""
42
+ f1 = add_file(conn, "src/auth.py", "python", 1.0, line_count=50)
43
+ f2 = add_file(conn, "src/api.py", "python", 1.0, line_count=100)
44
+ f3 = add_file(conn, "src/utils.py", "python", 1.0, line_count=30)
45
+
46
+ s1 = add_symbol(conn, f1, "authenticate", "function", 1, 20, signature="def authenticate(req)")
47
+ s2 = add_symbol(conn, f1, "verify_token", "function", 25, 40)
48
+ s3 = add_symbol(conn, f2, "handle_request", "function", 1, 50)
49
+ s4 = add_symbol(conn, f3, "format_date", "function", 1, 10)
50
+
51
+ # api.py references authenticate (defined in auth.py) and format_date (defined in utils.py)
52
+ add_reference(conn, f2, "authenticate", 10)
53
+ add_reference(conn, f2, "format_date", 20)
54
+ # auth.py references format_date (defined in utils.py)
55
+ add_reference(conn, f1, "format_date", 30)
56
+
57
+ conn.commit()
58
+ return conn, {"f1": f1, "f2": f2, "f3": f3, "s1": s1, "s2": s2, "s3": s3, "s4": s4}
59
+
60
+
61
+ class TestFileCRUD:
62
+ def test_add_and_get(self, conn):
63
+ fid = add_file(conn, "src/main.py", "python", 1.0, hash="abc123", line_count=100)
64
+ assert fid > 0
65
+ row = get_file_by_path(conn, "src/main.py")
66
+ assert row is not None
67
+ assert row["lang"] == "python"
68
+ assert row["hash"] == "abc123"
69
+ assert row["line_count"] == 100
70
+
71
+ def test_unique_path(self, conn):
72
+ add_file(conn, "src/main.py", "python", 1.0)
73
+ with pytest.raises(Exception):
74
+ add_file(conn, "src/main.py", "python", 2.0)
75
+
76
+ def test_get_nonexistent(self, conn):
77
+ assert get_file_by_path(conn, "nonexistent.py") is None
78
+
79
+ def test_remove_file(self, conn):
80
+ add_file(conn, "src/main.py", "python", 1.0)
81
+ conn.commit()
82
+ remove_file(conn, "src/main.py")
83
+ conn.commit()
84
+ assert get_file_by_path(conn, "src/main.py") is None
85
+
86
+ def test_remove_nonexistent_is_noop(self, conn):
87
+ # Should not raise
88
+ remove_file(conn, "nonexistent.py")
89
+
90
+ def test_remove_cascades(self, conn):
91
+ fid = add_file(conn, "src/main.py", "python", 1.0)
92
+ add_symbol(conn, fid, "foo", "function", 1, 10)
93
+ add_reference(conn, fid, "bar", 5)
94
+ conn.commit()
95
+ remove_file(conn, "src/main.py")
96
+ conn.commit()
97
+ assert get_file_by_path(conn, "src/main.py") is None
98
+ assert len(get_symbols_by_file(conn, fid)) == 0
99
+ assert len(get_references_by_file(conn, fid)) == 0
100
+
101
+
102
+ class TestSymbolCRUD:
103
+ def test_add_and_get(self, conn):
104
+ fid = add_file(conn, "src/main.py", "python", 1.0)
105
+ sid = add_symbol(conn, fid, "my_func", "function", 10, 30, signature="def my_func()")
106
+ sym = get_symbol_by_id(conn, sid)
107
+ assert sym["name"] == "my_func"
108
+ assert sym["kind"] == "function"
109
+ assert sym["signature"] == "def my_func()"
110
+
111
+ def test_get_by_name(self, conn):
112
+ fid = add_file(conn, "src/main.py", "python", 1.0)
113
+ add_symbol(conn, fid, "my_func", "function", 10, 30)
114
+ results = get_symbol_by_name(conn, "my_func")
115
+ assert len(results) == 1
116
+ assert results[0]["name"] == "my_func"
117
+
118
+ def test_get_by_name_multiple_matches(self, conn):
119
+ f1 = add_file(conn, "src/a.py", "python", 1.0)
120
+ f2 = add_file(conn, "src/b.py", "python", 1.0)
121
+ add_symbol(conn, f1, "init", "function", 1, 10)
122
+ add_symbol(conn, f2, "init", "function", 1, 10)
123
+ results = get_symbol_by_name(conn, "init")
124
+ assert len(results) == 2
125
+
126
+ def test_get_by_file(self, conn):
127
+ fid = add_file(conn, "src/main.py", "python", 1.0)
128
+ add_symbol(conn, fid, "foo", "function", 1, 10)
129
+ add_symbol(conn, fid, "bar", "class", 15, 30)
130
+ syms = get_symbols_by_file(conn, fid)
131
+ assert len(syms) == 2
132
+
133
+ def test_get_by_file_ordered(self, conn):
134
+ fid = add_file(conn, "src/main.py", "python", 1.0)
135
+ add_symbol(conn, fid, "second", "function", 20, 30)
136
+ add_symbol(conn, fid, "first", "function", 1, 10)
137
+ syms = get_symbols_by_file(conn, fid)
138
+ assert syms[0]["name"] == "first"
139
+ assert syms[1]["name"] == "second"
140
+
141
+ def test_parent_id(self, conn):
142
+ fid = add_file(conn, "src/main.py", "python", 1.0)
143
+ parent = add_symbol(conn, fid, "MyClass", "class", 1, 50)
144
+ child = add_symbol(conn, fid, "my_method", "method", 5, 20, parent_id=parent)
145
+ sym = get_symbol_by_id(conn, child)
146
+ assert sym["parent_id"] == parent
147
+
148
+ def test_qualified_name(self, conn):
149
+ fid = add_file(conn, "src/main.py", "python", 1.0)
150
+ sid = add_symbol(conn, fid, "func", "function", 1, 10, qualified_name="main.func")
151
+ sym = get_symbol_by_id(conn, sid)
152
+ assert sym["qualified_name"] == "main.func"
153
+
154
+
155
+ class TestReferenceCRUD:
156
+ def test_add_and_get(self, conn):
157
+ fid = add_file(conn, "src/main.py", "python", 1.0)
158
+ add_reference(conn, fid, "some_func", 42, kind="call")
159
+ refs = get_references_by_file(conn, fid)
160
+ assert len(refs) == 1
161
+ assert refs[0]["symbol_name"] == "some_func"
162
+ assert refs[0]["line"] == 42
163
+ assert refs[0]["kind"] == "call"
164
+
165
+ def test_default_kind(self, conn):
166
+ fid = add_file(conn, "src/main.py", "python", 1.0)
167
+ add_reference(conn, fid, "func", 10)
168
+ refs = get_references_by_file(conn, fid)
169
+ assert refs[0]["kind"] == "call"
170
+
171
+ def test_multiple_refs_ordered(self, conn):
172
+ fid = add_file(conn, "src/main.py", "python", 1.0)
173
+ add_reference(conn, fid, "b_func", 20)
174
+ add_reference(conn, fid, "a_func", 5)
175
+ refs = get_references_by_file(conn, fid)
176
+ assert refs[0]["line"] == 5
177
+ assert refs[1]["line"] == 20
178
+
179
+
180
+ class TestEdgeRebuilding:
181
+ def test_rebuild_file_edges(self, populated_conn):
182
+ conn, ids = populated_conn
183
+ rebuild_file_edges(conn)
184
+ conn.commit()
185
+ edges = conn.execute("SELECT * FROM file_edges").fetchall()
186
+ # api.py -> auth.py (authenticate), api.py -> utils.py (format_date),
187
+ # auth.py -> utils.py (format_date)
188
+ assert len(edges) >= 2
189
+
190
+ def test_rebuild_file_edges_no_self_edges(self, populated_conn):
191
+ conn, ids = populated_conn
192
+ rebuild_file_edges(conn)
193
+ conn.commit()
194
+ self_edges = conn.execute(
195
+ "SELECT * FROM file_edges WHERE source_file_id = target_file_id"
196
+ ).fetchall()
197
+ assert len(self_edges) == 0
198
+
199
+ def test_rebuild_symbol_edges(self, populated_conn):
200
+ conn, ids = populated_conn
201
+ rebuild_symbol_edges(conn)
202
+ conn.commit()
203
+ edges = conn.execute("SELECT * FROM symbol_edges").fetchall()
204
+ assert len(edges) >= 1
205
+
206
+ def test_rebuild_is_idempotent(self, populated_conn):
207
+ conn, ids = populated_conn
208
+ rebuild_file_edges(conn)
209
+ rebuild_symbol_edges(conn)
210
+ conn.commit()
211
+ count1 = conn.execute("SELECT COUNT(*) FROM file_edges").fetchone()[0]
212
+ count2 = conn.execute("SELECT COUNT(*) FROM symbol_edges").fetchone()[0]
213
+
214
+ rebuild_file_edges(conn)
215
+ rebuild_symbol_edges(conn)
216
+ conn.commit()
217
+ assert conn.execute("SELECT COUNT(*) FROM file_edges").fetchone()[0] == count1
218
+ assert conn.execute("SELECT COUNT(*) FROM symbol_edges").fetchone()[0] == count2
219
+
220
+
221
+ class TestGraphTraversal:
222
+ def test_transitive_deps(self, populated_conn):
223
+ conn, ids = populated_conn
224
+ rebuild_symbol_edges(conn)
225
+ conn.commit()
226
+ deps = get_transitive_deps(conn, ids["s3"]) # handle_request
77
227
  dep_names = {d["name"] for d in deps}
78
- self.assertIn("B", dep_names)
79
- self.assertIn("C", dep_names)
80
-
81
- def test_reverse_deps_blast_radius(self):
82
- """Blast radius of C should return B and A."""
83
- a = add_symbol(self.conn, "A", "function", "a.py", 1, 5)
84
- b = add_symbol(self.conn, "B", "function", "b.py", 1, 5)
85
- c = add_symbol(self.conn, "C", "function", "c.py", 1, 5)
86
- add_edge(self.conn, a, b, "calls")
87
- add_edge(self.conn, b, c, "calls")
88
- self.conn.commit()
89
- blast = get_reverse_deps(self.conn, c)
90
- blast_names = {d["name"] for d in blast}
91
- self.assertIn("B", blast_names)
92
- self.assertIn("A", blast_names)
93
-
94
- def test_fts_search(self):
95
- """FTS5 search should rank handleAuth above getUser for 'handle' query."""
96
- add_symbol(self.conn, "handleAuth", "function", "auth.py", 1, 5, "def handleAuth(request)", "Handle authentication")
97
- add_symbol(self.conn, "getUser", "function", "auth.py", 7, 10, "def getUser(user_id)", "Get user by ID")
98
- self.conn.commit()
99
- results = fts_search(self.conn, "handle")
100
- self.assertGreater(len(results), 0)
101
- self.assertEqual(results[0]["name"], "handleAuth")
102
-
103
- def test_cycle_prevention(self):
104
- """Recursive CTE should not loop on cycles."""
105
- a = add_symbol(self.conn, "A", "function", "a.py", 1, 5)
106
- b = add_symbol(self.conn, "B", "function", "b.py", 1, 5)
107
- add_edge(self.conn, a, b, "calls")
108
- add_edge(self.conn, b, a, "calls") # cycle!
109
- self.conn.commit()
110
- deps = get_transitive_deps(self.conn, a)
111
- # Should not hang, and should contain B
112
- self.assertTrue(any(d["name"] == "B" for d in deps))
113
-
114
- def test_stats(self):
115
- """Stats should return correct counts."""
116
- add_symbol(self.conn, "x", "function", "x.py", 1, 3)
117
- add_symbol(self.conn, "y", "function", "y.py", 1, 3)
118
- self.conn.commit()
119
- stats = get_stats(self.conn)
120
- self.assertEqual(stats["symbols"], 2)
121
- self.assertEqual(stats["files"], 2)
122
-
123
- if __name__ == "__main__":
124
- unittest.main()
228
+ # handle_request refs authenticate and format_date
229
+ assert "authenticate" in dep_names or "format_date" in dep_names
230
+
231
+ def test_reverse_deps(self, populated_conn):
232
+ conn, ids = populated_conn
233
+ rebuild_symbol_edges(conn)
234
+ conn.commit()
235
+ rdeps = get_reverse_deps(conn, ids["s1"]) # authenticate
236
+ rdep_names = {d["name"] for d in rdeps}
237
+ assert "handle_request" in rdep_names
238
+
239
+ def test_no_deps_for_leaf(self, populated_conn):
240
+ conn, ids = populated_conn
241
+ rebuild_symbol_edges(conn)
242
+ conn.commit()
243
+ deps = get_transitive_deps(conn, ids["s4"])
244
+ assert isinstance(deps, list)
245
+
246
+ def test_max_depth_limits_results(self, populated_conn):
247
+ conn, ids = populated_conn
248
+ rebuild_symbol_edges(conn)
249
+ conn.commit()
250
+ deps_deep = get_transitive_deps(conn, ids["s3"], max_depth=10)
251
+ deps_shallow = get_transitive_deps(conn, ids["s3"], max_depth=0)
252
+ assert len(deps_shallow) <= len(deps_deep)
253
+
254
+
255
+ class TestManualEdge:
256
+ def test_add_edge(self, populated_conn):
257
+ conn, ids = populated_conn
258
+ add_edge(conn, ids["s1"], ids["s3"], "test_kind")
259
+ conn.commit()
260
+ edge = conn.execute(
261
+ "SELECT * FROM symbol_edges WHERE source_symbol_id=? AND target_symbol_id=? AND kind=?",
262
+ (ids["s1"], ids["s3"], "test_kind"),
263
+ ).fetchone()
264
+ assert edge is not None
265
+
266
+ def test_duplicate_edge_ignored(self, populated_conn):
267
+ conn, ids = populated_conn
268
+ add_edge(conn, ids["s1"], ids["s3"], "test_kind")
269
+ # Should not raise
270
+ add_edge(conn, ids["s1"], ids["s3"], "test_kind")
271
+ conn.commit()
272
+
273
+
274
+ class TestFTS:
275
+ def test_search_by_name(self, populated_conn):
276
+ conn, ids = populated_conn
277
+ results = fts_search(conn, "authenticate")
278
+ assert len(results) >= 1
279
+ assert any(r["name"] == "authenticate" for r in results)
280
+
281
+ def test_search_by_signature(self, populated_conn):
282
+ conn, ids = populated_conn
283
+ results = fts_search(conn, "req")
284
+ assert len(results) >= 1
285
+
286
+ def test_search_no_results(self, populated_conn):
287
+ conn, ids = populated_conn
288
+ results = fts_search(conn, "zzzznonexistent")
289
+ assert len(results) == 0
290
+
291
+ def test_search_with_limit(self, populated_conn):
292
+ conn, ids = populated_conn
293
+ results = fts_search(conn, "authenticate", limit=1)
294
+ assert len(results) <= 1
295
+
296
+ def test_results_have_rank(self, populated_conn):
297
+ conn, ids = populated_conn
298
+ results = fts_search(conn, "authenticate")
299
+ assert len(results) >= 1
300
+ assert "rank" in results[0]
301
+
302
+
303
+ class TestStats:
304
+ def test_returns_all_fields(self, populated_conn):
305
+ conn, _ = populated_conn
306
+ s = get_stats(conn)
307
+ assert "file_count" in s
308
+ assert "symbol_count" in s
309
+ assert "reference_count" in s
310
+ assert "edge_count" in s
311
+ assert "file_edge_count" in s
312
+
313
+ def test_correct_counts(self, populated_conn):
314
+ conn, _ = populated_conn
315
+ s = get_stats(conn)
316
+ assert s["file_count"] == 3
317
+ assert s["symbol_count"] == 4
318
+ assert s["reference_count"] == 3
319
+
320
+
321
+ class TestCascadeDeletes:
322
+ def test_remove_file_cascades_symbols(self, populated_conn):
323
+ conn, ids = populated_conn
324
+ initial_stats = get_stats(conn)
325
+ remove_file(conn, "src/auth.py")
326
+ conn.commit()
327
+ after_stats = get_stats(conn)
328
+ assert after_stats["file_count"] == initial_stats["file_count"] - 1
329
+ assert after_stats["symbol_count"] < initial_stats["symbol_count"]
330
+
331
+ def test_remove_file_cascades_edges(self, populated_conn):
332
+ conn, ids = populated_conn
333
+ rebuild_file_edges(conn)
334
+ rebuild_symbol_edges(conn)
335
+ conn.commit()
336
+ remove_file(conn, "src/auth.py")
337
+ conn.commit()
338
+ edges_to_auth = conn.execute(
339
+ "SELECT COUNT(*) FROM symbol_edges WHERE source_symbol_id IN (?, ?) OR target_symbol_id IN (?, ?)",
340
+ (ids["s1"], ids["s2"], ids["s1"], ids["s2"]),
341
+ ).fetchone()[0]
342
+ assert edges_to_auth == 0
343
+
344
+ def test_remove_symbols_by_file(self, populated_conn):
345
+ conn, ids = populated_conn
346
+ remove_symbols_by_file(conn, "src/auth.py")
347
+ conn.commit()
348
+ assert get_symbol_by_id(conn, ids["s1"]) is None
349
+ assert get_symbol_by_id(conn, ids["s2"]) is None
350
+ # File itself should still exist
351
+ assert get_file_by_path(conn, "src/auth.py") is not None
352
+
353
+
354
+ class TestHashContent:
355
+ def test_deterministic(self):
356
+ assert hash_content("hello") == hash_content("hello")
357
+
358
+ def test_different_content(self):
359
+ assert hash_content("hello") != hash_content("world")
360
+
361
+ def test_returns_hex_string(self):
362
+ h = hash_content("test")
363
+ assert len(h) == 64
364
+ assert all(c in "0123456789abcdef" for c in h)