Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
7fdebc63
Commit
7fdebc63
authored
14 years ago
by
Angie Byron
Browse files
Options
Downloads
Patches
Plain Diff
#991046
by carlos8f, mikey_p: Fixed PDO Exception after upgrading from Drupal 6.19 to Drupal 7 RC1
parent
61aceff0
No related branches found
No related tags found
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/statistics/statistics.install
+14
-1
14 additions, 1 deletion
modules/statistics/statistics.install
modules/statistics/statistics.test
+11
-0
11 additions, 0 deletions
modules/statistics/statistics.test
with
25 additions
and
1 deletion
modules/statistics/statistics.install
+
14
−
1
View file @
7fdebc63
...
@@ -34,7 +34,7 @@ function statistics_schema() {
...
@@ -34,7 +34,7 @@ function statistics_schema() {
),
),
'sid'
=>
array
(
'sid'
=>
array
(
'type'
=>
'varchar'
,
'type'
=>
'varchar'
,
'length'
=>
64
,
'length'
=>
128
,
'not null'
=>
TRUE
,
'not null'
=>
TRUE
,
'default'
=>
''
,
'default'
=>
''
,
'description'
=>
'Browser session ID of user that visited page.'
,
'description'
=>
'Browser session ID of user that visited page.'
,
...
@@ -141,6 +141,19 @@ function statistics_schema() {
...
@@ -141,6 +141,19 @@ function statistics_schema() {
* @{
* @{
*/
*/
/**
* Update the {accesslog}.sid column to match the length of {sessions}.sid
*/
function
statistics_update_7000
()
{
db_change_field
(
'accesslog'
,
'sid'
,
'sid'
,
array
(
'type'
=>
'varchar'
,
'length'
=>
128
,
'not null'
=>
TRUE
,
'default'
=>
''
,
'description'
=>
'Browser session ID of user that visited page.'
,
));
}
/**
/**
* @} End of "defgroup updates-6.x-to-7.x"
* @} End of "defgroup updates-6.x-to-7.x"
* The next series of updates should start at 8000.
* The next series of updates should start at 8000.
...
...
This diff is collapsed.
Click to expand it.
modules/statistics/statistics.test
+
11
−
0
View file @
7fdebc63
...
@@ -61,6 +61,7 @@ class StatisticsLoggingTestCase extends DrupalWebTestCase {
...
@@ -61,6 +61,7 @@ class StatisticsLoggingTestCase extends DrupalWebTestCase {
// Ensure we have a node page to access.
// Ensure we have a node page to access.
$this
->
node
=
$this
->
drupalCreateNode
();
$this
->
node
=
$this
->
drupalCreateNode
();
$this
->
auth_user
=
$this
->
drupalCreateUser
();
// Enable page caching.
// Enable page caching.
variable_set
(
'cache'
,
TRUE
);
variable_set
(
'cache'
,
TRUE
);
...
@@ -101,6 +102,16 @@ class StatisticsLoggingTestCase extends DrupalWebTestCase {
...
@@ -101,6 +102,16 @@ class StatisticsLoggingTestCase extends DrupalWebTestCase {
$this
->
assertEqual
(
array_intersect_key
(
$log
[
1
],
$expected
),
$expected
);
$this
->
assertEqual
(
array_intersect_key
(
$log
[
1
],
$expected
),
$expected
);
$node_counter
=
statistics_get
(
$this
->
node
->
nid
);
$node_counter
=
statistics_get
(
$this
->
node
->
nid
);
$this
->
assertIdentical
(
$node_counter
[
'totalcount'
],
'2'
);
$this
->
assertIdentical
(
$node_counter
[
'totalcount'
],
'2'
);
// Test logging from authenticated users
$this
->
drupalLogin
(
$this
->
auth_user
);
$this
->
drupalGet
(
$path
);
$log
=
db_query
(
'SELECT * FROM {accesslog}'
)
->
fetchAll
(
PDO
::
FETCH_ASSOC
);
// Check the 6th item since login and account pages are also logged
$this
->
assertTrue
(
is_array
(
$log
)
&&
count
(
$log
)
==
6
,
t
(
'Page request was logged.'
));
$this
->
assertEqual
(
array_intersect_key
(
$log
[
5
],
$expected
),
$expected
);
$node_counter
=
statistics_get
(
$this
->
node
->
nid
);
$this
->
assertIdentical
(
$node_counter
[
'totalcount'
],
'3'
);
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment