surrealdb-core 3.2.3

A scalable, distributed, collaborative, document-graph database, for the realtime web
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
#![recursion_limit = "256"]
#![allow(clippy::unwrap_used)]

use surrealdb_core::iam::Level;
use surrealdb_core::syn;
use surrealdb_types::{Array, RecordId, Value};

mod helpers;
use anyhow::Result;
use helpers::new_ds;
use surrealdb_core::dbs::Session;
use surrealdb_core::iam::Role;

use crate::helpers::skip_ok;

#[tokio::test]
async fn create_or_insert_with_permissions() -> Result<()> {
	let sql = "
		DEFINE TABLE user SCHEMAFULL PERMISSIONS FULL;
		CREATE user:test;
		DEFINE TABLE demo SCHEMAFULL PERMISSIONS FOR select, create WHERE user = $auth.id;
		DEFINE FIELD user ON TABLE demo VALUE $auth.id;
		DEFINE TABLE OVERWRITE foo SCHEMAFULL PERMISSIONS FOR select,create WHERE TRUE;
		DEFINE FUNCTION OVERWRITE fn::client::foo() { RETURN CREATE ONLY foo:bar CONTENT {};};
	";
	let (_, dbs) = new_ds("test", "test", true).await?;
	let ses = Session::owner().with_ns("test").with_db("test");
	let res = &mut dbs.execute(sql, &ses, None).await?;
	assert_eq!(res.len(), 6);
	//
	skip_ok(res, 4)?;
	//
	let sql = "
		CREATE demo SET id = demo:one;
		INSERT INTO demo (id) VALUES (demo:two);
		fn::client::foo();
	";
	let ses = Session::for_record(
		"test",
		"test",
		"test",
		Value::RecordId(RecordId::new("user", "test".to_string())),
	);
	let res = &mut dbs.execute(sql, &ses, None).await?;
	assert_eq!(res.len(), 3);
	//
	let tmp = res.remove(0).result?;
	let val = syn::value(
		"[
			{
				id: demo:one,
				user: user:test,
			},
		]",
	)
	.unwrap();
	assert_eq!(tmp, val);
	//
	let tmp = res.remove(0).result?;
	let val = syn::value(
		"[
			{
				id: demo:two,
				user: user:test,
			},
		]",
	)
	.unwrap();
	assert_eq!(tmp, val);
	//
	let tmp = res.remove(0).result?;
	let val = syn::value("{ id: foo:bar}").unwrap();
	assert_eq!(tmp, val);
	//
	Ok(())
}

//
// Permissions
//

async fn common_permissions_checks(auth_enabled: bool) {
	let tests = vec![
		// Root level
		(
			(Level::Root, Role::Owner),
			("NS", "DB"),
			true,
			"owner at root level should be able to create a new record",
		),
		(
			(Level::Root, Role::Editor),
			("NS", "DB"),
			true,
			"editor at root level should be able to create a new record",
		),
		(
			(Level::Root, Role::Viewer),
			("NS", "DB"),
			false,
			"viewer at root level should not be able to create a new record",
		),
		// Namespace level
		(
			(Level::Namespace("NS".to_string()), Role::Owner),
			("NS", "DB"),
			true,
			"owner at namespace level should be able to create a new record on its namespace",
		),
		(
			(Level::Namespace("NS".to_string()), Role::Owner),
			("OTHER_NS", "DB"),
			false,
			"owner at namespace level should not be able to create a new record on another namespace",
		),
		(
			(Level::Namespace("NS".to_string()), Role::Editor),
			("NS", "DB"),
			true,
			"editor at namespace level should be able to create a new record on its namespace",
		),
		(
			(Level::Namespace("NS".to_string()), Role::Editor),
			("OTHER_NS", "DB"),
			false,
			"editor at namespace level should not be able to create a new record on another namespace",
		),
		(
			(Level::Namespace("NS".to_string()), Role::Viewer),
			("NS", "DB"),
			false,
			"viewer at namespace level should not be able to create a new record on its namespace",
		),
		(
			(Level::Namespace("NS".to_string()), Role::Viewer),
			("OTHER_NS", "DB"),
			false,
			"viewer at namespace level should not be able to create a new record on another namespace",
		),
		// Database level
		(
			(Level::Database("NS".to_string(), "DB".to_string()), Role::Owner),
			("NS", "DB"),
			true,
			"owner at database level should be able to create a new record on its database",
		),
		(
			(Level::Database("NS".to_string(), "DB".to_string()), Role::Owner),
			("NS", "OTHER_DB"),
			false,
			"owner at database level should not be able to create a new record on another database",
		),
		(
			(Level::Database("NS".to_string(), "DB".to_string()), Role::Owner),
			("OTHER_NS", "DB"),
			false,
			"owner at database level should not be able to create a new record on another namespace even if the database name matches",
		),
		(
			(Level::Database("NS".to_string(), "DB".to_string()), Role::Editor),
			("NS", "DB"),
			true,
			"editor at database level should be able to create a new record on its database",
		),
		(
			(Level::Database("NS".to_string(), "DB".to_string()), Role::Editor),
			("NS", "OTHER_DB"),
			false,
			"editor at database level should not be able to create a new record on another database",
		),
		(
			(Level::Database("NS".to_string(), "DB".to_string()), Role::Editor),
			("OTHER_NS", "DB"),
			false,
			"editor at database level should not be able to create a new record on another namespace even if the database name matches",
		),
		(
			(Level::Database("NS".to_string(), "DB".to_string()), Role::Viewer),
			("NS", "DB"),
			false,
			"viewer at database level should not be able to create a new record on its database",
		),
		(
			(Level::Database("NS".to_string(), "DB".to_string()), Role::Viewer),
			("NS", "OTHER_DB"),
			false,
			"viewer at database level should not be able to create a new record on another database",
		),
		(
			(Level::Database("NS".to_string(), "DB".to_string()), Role::Viewer),
			("OTHER_NS", "DB"),
			false,
			"viewer at database level should not be able to create a new record on another namespace even if the database name matches",
		),
	];
	let statement = "CREATE person";

	// Test the CREATE statement when the table has to be created
	for ((level, role), (ns, db), should_succeed, msg) in tests {
		let sess = Session::for_level(level, role).with_ns(ns).with_db(db);

		{
			let (_, ds) = new_ds("NS", "DB", auth_enabled).await.unwrap();

			ds.execute(&format!("USE NS {ns} DB {db}"), &sess, None).await.unwrap();

			let mut resp = ds.execute(statement, &sess, None).await.unwrap();
			let res = resp.remove(0).output();

			if should_succeed {
				assert!(res.is_ok(), "{}: {:?}", msg, res);
				assert_ne!(res.unwrap(), Value::Array(Array::new()), "{}", msg);
			} else if res.is_ok() {
				// Permissions clause doesn't allow to query the table
				assert_eq!(res.unwrap(), Value::Array(Array::new()), "{}", msg);
			} else {
				// Not allowed to create a record. `USE` no longer auto-creates
				// the target namespace/database when the session lacks the
				// `Edit` authorization that `DEFINE NAMESPACE` / `DEFINE
				// DATABASE` requires (SECURITY_GUIDE §3), so downstream
				// `CREATE` on a previously-unprovisioned target surfaces a
				// `NotFound` error here instead of the older `NotAllowed`.
				// Both satisfy the test's intent that the session cannot
				// reach the record-level write.
				let err = res.unwrap_err();
				assert!(
					err.is_not_allowed() || err.is_not_found(),
					"{msg}: expected NotAllowed or NotFound, got {err}"
				)
			}
		}

		// Test the CREATE statement when the table already exists
		{
			let (_, ds) = new_ds("NS", "DB", auth_enabled).await.unwrap();

			// Define additional namespaces/databases for cross-namespace tests
			ds.execute(
				"DEFINE NS OTHER_NS; USE NS OTHER_NS; DEFINE DB DB; USE NS NS; DEFINE DB OTHER_DB;",
				&Session::owner().with_ns("NS").with_db("DB"),
				None,
			)
			.await
			.unwrap();

			ds.execute(&format!("USE NS {ns} DB {db}"), &sess, None).await.unwrap();

			let mut resp = ds
				.execute("CREATE person", &Session::owner().with_ns("NS").with_db("DB"), None)
				.await
				.unwrap();
			let res = resp.remove(0).output();
			assert!(
				res.is_ok() && res.unwrap() != Value::Array(Array::new()),
				"unexpected error creating person record"
			);

			let mut resp = ds
				.execute("CREATE person", &Session::owner().with_ns("OTHER_NS").with_db("DB"), None)
				.await
				.unwrap();
			let res = resp.remove(0).output();
			assert!(
				res.is_ok() && res.unwrap() != Value::Array(Array::new()),
				"unexpected error creating person record"
			);

			let mut resp = ds
				.execute("CREATE person", &Session::owner().with_ns("NS").with_db("OTHER_DB"), None)
				.await
				.unwrap();
			let res = resp.remove(0).output();
			assert!(
				res.is_ok() && res.unwrap() != Value::Array(Array::new()),
				"unexpected error creating person record"
			);

			// Run the test
			let mut resp = ds.execute(statement, &sess, None).await.unwrap();
			let res = resp.remove(0).output();

			if should_succeed {
				assert!(res.is_ok(), "{}: {:?}", msg, res);
				assert_ne!(res.unwrap(), Value::Array(Array::new()), "{}", msg);
			} else if res.is_ok() {
				// Permissions clause doesn't allow to query the table
				assert_eq!(res.unwrap(), Value::Array(Array::new()), "{}", msg);
			} else {
				// Not allowed to create a table
				let err = res.unwrap_err();
				assert!(err.is_not_allowed(), "{msg}: expected NotAllowed, got {err}")
			}
		}
	}
}

#[tokio::test]
async fn check_permissions_auth_enabled() {
	let auth_enabled = true;
	//
	// Test common scenarios
	//
	common_permissions_checks(auth_enabled).await;

	//
	// Test Anonymous user
	//

	// When the table doesn't exist
	{
		let (_, ds) = new_ds("NS", "DB", auth_enabled).await.unwrap();

		let mut resp = ds
			.execute("CREATE person", &Session::default().with_ns("NS").with_db("DB"), None)
			.await
			.unwrap();
		let res = resp.remove(0).output();

		// With auth enabled, anonymous users can create tables (implicitly creating them)
		// but get empty results due to default permissions
		assert_eq!(
			res.unwrap(),
			Value::Array(Array::new()),
			"anonymous user should get empty result when creating table with auth enabled"
		);
	}

	// When the table exists but grants no permissions
	{
		let (_, ds) = new_ds("NS", "DB", auth_enabled).await.unwrap();

		let mut resp = ds
			.execute(
				"DEFINE TABLE person PERMISSIONS NONE",
				&Session::owner().with_ns("NS").with_db("DB"),
				None,
			)
			.await
			.unwrap();
		let res = resp.remove(0).output();
		assert!(res.is_ok(), "failed to create table: {:?}", res);

		let mut resp = ds
			.execute("CREATE person", &Session::default().with_ns("NS").with_db("DB"), None)
			.await
			.unwrap();
		let res = resp.remove(0).output();

		assert!(
			res.unwrap() == Value::Array(Array::new()),
			"{}",
			"anonymous user should not be able to create a new record if the table exists but has no permissions"
		);
	}

	// When the table exists and grants full permissions
	{
		let (_, ds) = new_ds("NS", "DB", auth_enabled).await.unwrap();

		let mut resp = ds
			.execute(
				"DEFINE TABLE person PERMISSIONS FULL",
				&Session::owner().with_ns("NS").with_db("DB"),
				None,
			)
			.await
			.unwrap();
		let res = resp.remove(0).output();
		assert!(res.is_ok(), "failed to create table: {:?}", res);

		let mut resp = ds
			.execute("CREATE person", &Session::default().with_ns("NS").with_db("DB"), None)
			.await
			.unwrap();
		let res = resp.remove(0).output();

		assert!(
			res.unwrap() != Value::Array(Array::new()),
			"{}",
			"anonymous user should be able to create a new record if the table exists and grants full permissions"
		);
	}
}

#[tokio::test]
async fn check_permissions_auth_disabled() {
	let auth_enabled = false;
	//
	// Test common scenarios
	//
	common_permissions_checks(auth_enabled).await;

	//
	// Test Anonymous user
	//

	// When the table doesn't exist
	{
		let (_, ds) = new_ds("NS", "DB", auth_enabled).await.unwrap();

		let mut resp = ds
			.execute("CREATE person", &Session::default().with_ns("NS").with_db("DB"), None)
			.await
			.unwrap();
		let res = resp.remove(0).output();

		assert!(
			res.unwrap() != Value::Array(Array::new()),
			"{}",
			"anonymous user should be able to create the table"
		);
	}

	// When the table exists but grants no permissions
	{
		let (_, ds) = new_ds("NS", "DB", auth_enabled).await.unwrap();

		let mut resp = ds
			.execute(
				"DEFINE TABLE person PERMISSIONS NONE",
				&Session::owner().with_ns("NS").with_db("DB"),
				None,
			)
			.await
			.unwrap();
		let res = resp.remove(0).output();
		assert!(res.is_ok(), "failed to create table: {:?}", res);

		let mut resp = ds
			.execute("CREATE person", &Session::default().with_ns("NS").with_db("DB"), None)
			.await
			.unwrap();
		let res = resp.remove(0).output();

		assert!(
			res.unwrap() != Value::Array(Array::new()),
			"{}",
			"anonymous user should not be able to create a new record if the table exists but has no permissions"
		);
	}

	{
		let (_, ds) = new_ds("NS", "DB", auth_enabled).await.unwrap();

		// When the table exists and grants full permissions
		let mut resp = ds
			.execute(
				"DEFINE TABLE person PERMISSIONS FULL",
				&Session::owner().with_ns("NS").with_db("DB"),
				None,
			)
			.await
			.unwrap();
		let res = resp.remove(0).output();
		assert!(res.is_ok(), "failed to create table: {:?}", res);

		let mut resp = ds
			.execute("CREATE person", &Session::default().with_ns("NS").with_db("DB"), None)
			.await
			.unwrap();
		let res = resp.remove(0).output();

		assert!(
			res.unwrap() != Value::Array(Array::new()),
			"{}",
			"anonymous user should be able to create a new record if the table exists and grants full permissions"
		);
	}
}