mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	This requires no changes in production, but is tagged as manual to remind developers that they need to edit and run the tools/migrate-db script to fix up their local database instances. (imported from commit fbf764fb61592ef994d6d2ad56edad65ff01f14b)
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash -e
 | 
						|
 | 
						|
function migration_status {
 | 
						|
    ./manage.py migrate --list | sed 's/*/ /' > "$1"
 | 
						|
}
 | 
						|
 | 
						|
template_grep_error_code=$(echo "SELECT 1 from pg_database WHERE datname='zulip_test_template';" | python manage.py dbshell --settings=zproject.test_settings | grep -q "1 row"; echo $?)
 | 
						|
 | 
						|
if [ $template_grep_error_code == "0" ]; then
 | 
						|
    migration_status zerver/fixtures/available-migrations
 | 
						|
    if [ -e zerver/fixtures/migration-status ] &&
 | 
						|
        cmp -s zerver/fixtures/available-migrations zerver/fixtures/migration-status &&
 | 
						|
        [ "$1" != "--force" ]; then
 | 
						|
            psql -h localhost postgres zulip_test << EOF
 | 
						|
DROP DATABASE zulip_test;
 | 
						|
CREATE DATABASE zulip_test TEMPLATE zulip_test_template;
 | 
						|
EOF
 | 
						|
        exit 0
 | 
						|
    fi
 | 
						|
fi
 | 
						|
 | 
						|
mkdir -p zerver/fixtures
 | 
						|
 | 
						|
# Remove time.pyc to try to prevent it from screwing people importing
 | 
						|
# time from inside zerver.lib.  We can drop this hack after a bit.
 | 
						|
rm -f zerver/lib/time.pyc
 | 
						|
 | 
						|
 | 
						|
echo "DROP SCHEMA zulip CASCADE; CREATE SCHEMA zulip;" | python manage.py dbshell --settings=zproject.test_settings
 | 
						|
python manage.py syncdb --noinput --settings=zproject.test_settings
 | 
						|
python manage.py migrate --settings=zproject.test_settings --all
 | 
						|
migration_status "zerver/fixtures/migration-status"
 | 
						|
 | 
						|
# This next line can be simplified to "-n0" once we fix our app with 0 messages.
 | 
						|
python manage.py populate_db --settings=zproject.test_settings --test-suite -n2 \
 | 
						|
    --threads=1 --huddles=0 --personals=0 --percent-huddles=0 --percent-personals=0
 | 
						|
python manage.py dumpdata  --settings=zproject.test_settings \
 | 
						|
    zerver.UserProfile zerver.Stream zerver.Recipient \
 | 
						|
    zerver.Subscription zerver.Message zerver.Huddle zerver.Realm \
 | 
						|
    zerver.UserMessage zerver.Client \
 | 
						|
    zerver.DefaultStream > zerver/fixtures/messages.json
 | 
						|
 | 
						|
# create pristine template database, for fast fixture restoration after tests are run.
 | 
						|
psql -h localhost postgres zulip_test << EOF
 | 
						|
DROP DATABASE zulip_test_template;
 | 
						|
CREATE DATABASE zulip_test_template TEMPLATE zulip_test;
 | 
						|
EOF
 |