Import sqlite test suite

From CDOT Wiki
Jump to: navigation, search

Project: Import sqlite test suite

Import sqlite test suite

Project Description

Mozilla uses an embedded version of SQLite extensively to store data such as bookmarks, history, etc. To insure that it runs properly within Mozilla, it would be good to add the entire sqlite test suite to Mozilla's tests, so that testing the browser also means testing sqlite. The sqlite test suite is written in TCL and needs to be ported to JavaScript. Some work has already been done, but more is required to get full test coverage.

Project Leader(s)

Park, KiWon

Project Contributor(s)

Project Details

bug 391756
http://www.0xdeadbeef.com/weblog/?p=368

Releases

  • Releases 0.1-2008/10/15
    • Mocha image
      • Fail the connection test.
      • Shawn asks "version control"
  • Releases 0.2
    • add new code into "Makefile"
      • make test_c++: it tests all c++ test code in the test folder
      • make test_js: it tests all .js files in the unit folder
      • make test_js_file: it tests a specific file in the unit folder
        • ex)make test_js_file f=test_like.js


  • Releases 0.3

Related Bug List

Bug 417037 - mozStorage chokes on databases over AFP

Bug 313553 - Move Session Storage to Database

Bug 403377 - add method for creating indices to mozIStorageConnection

Bug 385093 - --enable-storage comments in configure.in are misleading

To Do

  • Makefile
    • c++ code auto testing
    • .js files auto testing
    • sepcific .js file auto testing
  • Research
    • Make file
    • SQLite itself
      • Install SQLite
      • How to use SQLite
      • SQLite test suite here
    • SQLite inside Firefox3
      • Find the default setting of SQLite files, tables, and values on Firefox 3
      • Find a relationship tree that which classes or functions talk with SQLite
      • Run & understand the test program already built in the tests folder
      • Storage
    • ETC
  • Testing
    • Function Test
    • working and performance tests
    • data testing
    • TCL testing

Project News

Right Now,I am working on

the 0.2 make file makes working on .mozconf options, it should be 0.3

Working History

C:\Documents and Settings\user account name\Application Data\Mozilla\Firefox\Profiles\bulid name.default\
 Files: signons.sqlite / search.sqlite / places.sqlite / permissions.sqlite / formhistory.sqlite / downloads.sqlite
        / cookies.sqlite / content-prefs.sqlite
  • 2008/9/23
    • Find a bug that Sequence number’s jumping
      • I am searching that this is a reported bug or not, and when the numbers are jumping and why
        • File Name: places.sqlite
        • Summary: Sequence number is jumping
        • OS: Win XP SP2 image
  • 2008/9/24
    • Research SQLite bugs & features here
  • 2008/9/25
    • My first testing : showing the test messages when SQLite is connected.
    • it is called over 20 times , when Firefox is just opened. image
  • 2008/9/27
    • SQLite Test Suite testing and searching
  • 2008/9/29
    • TCL install and testing
    • SQLite test source ( suite ) code reading on SQLite site
      • only inside "sqlite-3.6.3.tar.gz"(2.2M)
    • Reading ".test" files
  • 2008/10/1
    • SQLite test sample source ( suite ) code reading on Firefox site
      • mozilla/source/storage/test/unit
  • 2008/10/5
    • SQLite test suite running test
  • 2008/10/15
    • Update Mocha image into Bugzilla and waiting Shawn Wilsher's review
    • Test SQLite connection on Firefox(Fail)
      • it needs a permission
        • Fix by "netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');"
      • File access error
        • Find that "It is available to trusted callers, meaning extensions and Firefox components only"
        • I'm thinking that the test suite as a extension, thus, looking "XPCOM"
  • 2008/10/16
    • Shawn asks "Update & version control"
      • i am thinking the "configure menu"
  • 2008/10/17
    • Peter Weilbacher says "Why we need the test suite, it already there, so, we just use SQLite's"
  • 2008/10/27
    • Shawn says version control, but i don't get the idea
  • 2008/11/08
    • find new command that
      • perl obj/_test_testing/mochitest/runtests.py
        • it opens an new window and starts tests
      • the folder "_test" has our testing files
  • 2008/11/09
    • make -C test_folder check
      • it checks all .js files in the test/unit folder
    • make SOLO_FILE="test_like.js" -C JS_FILE_URL check-interactive
      • it checks a specific .js file
  • 2008/11/11
    • i hope to get a file name(.js) which wants to testing from console,
    • but it can not.. try to using Perl
    • ex) run_single_js.pl
  • 2008/11/13
    • perl can get the file list, and get values from console
    • but, it can not run "make" command
    • it can use the shell command such as cp, echo, mv
    • but, i can not find that how to use "make" in perl
  • 2008/11/15
    • go to easy way,
    • make file can get a value from console
    • ex) make file_name = test.js
    • echo $(file_name) : will print "test.js"