2011-05-13 22:22:34 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ :
|
2012-05-21 15:12:37 +04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-05-13 22:22:34 +04:00
|
|
|
|
|
|
|
#include "storage_test_harness.h"
|
2012-06-06 06:08:30 +04:00
|
|
|
#include "nsIFile.h"
|
2013-09-23 21:29:27 +04:00
|
|
|
#include "prio.h"
|
2011-05-13 22:22:34 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This file tests that the file permissions of the sqlite files match what
|
|
|
|
* we request they be
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
test_file_perms()
|
|
|
|
{
|
2011-11-04 12:40:25 +04:00
|
|
|
nsCOMPtr<mozIStorageConnection> db(getDatabase());
|
|
|
|
nsCOMPtr<nsIFile> dbFile;
|
|
|
|
do_check_success(db->GetDatabaseFile(getter_AddRefs(dbFile)));
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t perms = 0;
|
2012-06-06 06:08:30 +04:00
|
|
|
do_check_success(dbFile->GetPermissions(&perms));
|
2011-05-13 22:22:34 +04:00
|
|
|
|
|
|
|
// This reflexts the permissions defined by SQLITE_DEFAULT_FILE_PERMISSIONS in
|
|
|
|
// db/sqlite3/src/Makefile.in and must be kept in sync with that
|
|
|
|
#ifdef ANDROID
|
2011-11-04 12:40:25 +04:00
|
|
|
do_check_true(perms == (PR_IRUSR | PR_IWUSR));
|
|
|
|
#elif defined(XP_WIN)
|
|
|
|
do_check_true(perms == (PR_IRUSR | PR_IWUSR | PR_IRGRP | PR_IWGRP | PR_IROTH | PR_IWOTH));
|
2011-05-13 22:22:34 +04:00
|
|
|
#else
|
2011-11-04 12:40:25 +04:00
|
|
|
do_check_true(perms == (PR_IRUSR | PR_IWUSR | PR_IRGRP | PR_IROTH));
|
2011-05-13 22:22:34 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void (*gTests[])(void) = {
|
|
|
|
test_file_perms,
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *file = __FILE__;
|
|
|
|
#define TEST_NAME "file perms"
|
|
|
|
#define TEST_FILE file
|
|
|
|
#include "storage_test_harness_tail.h"
|