# frozen_string_literal: true # Redmine - project management software # Copyright (C) 2006- Jean-Philippe Lang # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. require_relative '../application_system_test_case' class MyPageTest < ApplicationSystemTestCase def test_sort_assigned_issues preferences = User.find(2).pref preferences.my_page_layout = {'top' => ['issuesassignedtome']} preferences.my_page_settings = {'issuesassignedtome' => {:columns => ['tracker', 'subject', 'due_date'], :sort => 'id:desc'}} preferences.save! log_user('jsmith', 'jsmith') visit '/my/page' assert page.has_css?('table.issues.sort-by-id') assert page.has_css?('table.issues.sort-desc') within('#block-issuesassignedtome') do # sort by tracker asc click_link 'Tracker' assert page.has_css?('table.issues.sort-by-tracker') assert page.has_css?('table.issues.sort-asc') # and desc click_link 'Tracker' assert page.has_css?('table.issues.sort-by-tracker') assert page.has_css?('table.issues.sort-desc') end # reload the page, sort order should be preserved visit '/my/page' assert page.has_css?('table.issues.sort-by-tracker') assert page.has_css?('table.issues.sort-desc') end def test_add_block preferences = User.find(2).pref preferences.my_page_layout = {'top' => ['issuesassignedtome']} preferences.save! log_user('jsmith', 'jsmith') visit '/my/page' select 'Watched issues', :from => 'Add' assert page.has_css?('#block-issueswatched') assert_equal({'top' => ['issueswatched', 'issuesassignedtome']}, preferences.reload.my_page_layout) end def test_add_issue_query_block preferences = User.find(2).pref preferences.my_page_layout = {'top' => ['issuesassignedtome']} preferences.save! query = IssueQuery.create!(:name => 'My query', :user_id => 2) log_user('jsmith', 'jsmith') visit '/my/page' select 'Issues', :from => 'Add' # Select which query to display select query.name, :from => 'Custom query' click_on 'Save' assert page.has_css?('#block-issuequery table.issues') assert_equal({'top' => ['issuequery', 'issuesassignedtome']}, preferences.reload.my_page_layout) assert_equal({:query_id => query.id.to_s}, preferences.my_page_settings['issuequery']) end def test_remove_block preferences = User.find(2).pref preferences.my_page_layout = {'top' => ['issuesassignedtome']} preferences.save! log_user('jsmith', 'jsmith') visit '/my/page' within '#block-issuesassignedtome' do click_on 'Delete' end assert page.has_no_css?('#block-issuesassignedtome') assert_equal({'top' => []}, preferences.reload.my_page_layout) end end dmin_audit/enh/move-to-event-listeners'>admin_audit/enh/move-to-event-listeners Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/core/Migrations/Version21000Date20201202095923.php
blob: c087447f050227909bfe5786800e9ce80e471f9d (plain)
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
<?php

declare(strict_types=1);

/**
 * @copyright Copyright (c) 2020 Joas Schilling <coding@schilljs.com>
 *
 * @author Christoph Wurst <christoph@winzerhof-wurst.at>
 * @author Joas Schilling <coding@schilljs.com>
 *
 * @license GNU AGPL version 3 or any later version
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 *
 */
namespace OC\Core\Migrations;

use Closure;
use OCP\DB\Types;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;

class Version21000Date20201202095923 extends SimpleMigrationStep {
	/**
	 * @param IOutput $output
	 * @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
	 * @param array $options
	 * @return null|ISchemaWrapper
	 */
	public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
		/** @var ISchemaWrapper $schema */
		$schema = $schemaClosure();

		if (!$schema->hasTable('accounts_data')) {
			$table = $schema->createTable('accounts_data');
			$table->addColumn('id', Types::BIGINT, [
				'autoincrement' => true,
				'notnull' => true,
				'length' => 20,
			]);
			$table->addColumn('uid', Types::STRING, [
				'notnull' => true,
				'length' => 64,
			]);
			$table->addColumn('name', Types::STRING, [
				'notnull' => true,
				'length' => 64,
			]);
			$table->addColumn('value', Types::STRING, [
				'notnull' => false,
				'length' => 255,
				'default' => '',
			]);
			$table->setPrimaryKey(['id']);
			$table->addIndex(['uid'], 'accounts_data_uid');
			$table->addIndex(['name'], 'accounts_data_name');
			$table->addIndex(['value'], 'accounts_data_value');

			return $schema;
		}

		return null;
	}
}