зеркало из https://github.com/mozilla/pjs.git
Bug 411966 – Wrong favicon appears in the bookmarks list. r=dietrich
This commit is contained in:
Родитель
1ca6925959
Коммит
3fce122958
|
@ -23,7 +23,7 @@
|
|||
* Dietrich Ayala <dietrich@mozilla.com>
|
||||
* Seth Spitzer <sspitzer@mozilla.com>
|
||||
* Asaf Romano <mano@mozilla.com>
|
||||
* Marco Bonardo <mak77@supereva.it>
|
||||
* Marco Bonardo <mak77@bonardo.net>
|
||||
* Edward Lee <edward.lee@engineering.uiuc.edu>
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
|
@ -4205,12 +4205,13 @@ nsNavHistory::AddURIInternal(nsIURI* aURI, PRTime aTime, PRBool aRedirect,
|
|||
nsresult
|
||||
nsNavHistory::AddVisitChain(nsIURI* aURI, PRTime aTime,
|
||||
PRBool aToplevel, PRBool aIsRedirect,
|
||||
nsIURI* aReferrer, PRInt64* aVisitID,
|
||||
nsIURI* aReferrerURI, PRInt64* aVisitID,
|
||||
PRInt64* aSessionID, PRInt64* aRedirectBookmark)
|
||||
{
|
||||
PRUint32 transitionType = 0;
|
||||
PRInt64 referringVisit = 0;
|
||||
PRTime visitTime = 0;
|
||||
nsCOMPtr<nsIURI> fromVisitURI = aReferrerURI;
|
||||
|
||||
nsCAutoString spec;
|
||||
nsresult rv = aURI->GetSpec(spec);
|
||||
|
@ -4237,7 +4238,7 @@ nsNavHistory::AddVisitChain(nsIURI* aURI, PRTime aTime,
|
|||
// in the correct order. Since the times are in microseconds, it should not
|
||||
// normally be possible to get two pages within one microsecond of each
|
||||
// other so the referrer won't appear before a previous page viewed.
|
||||
rv = AddVisitChain(redirectURI, aTime - 1, aToplevel, PR_TRUE, aReferrer,
|
||||
rv = AddVisitChain(redirectURI, aTime - 1, aToplevel, PR_TRUE, aReferrerURI,
|
||||
&referringVisit, aSessionID, aRedirectBookmark);
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
|
||||
|
@ -4246,12 +4247,16 @@ nsNavHistory::AddVisitChain(nsIURI* aURI, PRTime aTime,
|
|||
if (!aToplevel) {
|
||||
transitionType = nsINavHistoryService::TRANSITION_EMBED;
|
||||
}
|
||||
} else if (aReferrer) {
|
||||
|
||||
// We have been redirected, update the referrer so we can walk up
|
||||
// the redirect chain. See bug 411966 for details.
|
||||
fromVisitURI = redirectURI;
|
||||
} else if (aReferrerURI) {
|
||||
// We do not want to add a new visit if the referring site is the same as
|
||||
// the new site. This is the situation where a page refreshes itself to
|
||||
// give the user updated information.
|
||||
PRBool referrerIsSame;
|
||||
if (NS_SUCCEEDED(aURI->Equals(aReferrer, &referrerIsSame)) && referrerIsSame)
|
||||
if (NS_SUCCEEDED(aURI->Equals(aReferrerURI, &referrerIsSame)) && referrerIsSame)
|
||||
return NS_OK;
|
||||
|
||||
// If there is a referrer, we know you came from somewhere, either manually
|
||||
|
@ -4281,7 +4286,7 @@ nsNavHistory::AddVisitChain(nsIURI* aURI, PRTime aTime,
|
|||
|
||||
// Try to turn the referrer into a visit.
|
||||
// This also populates the session id.
|
||||
if (!FindLastVisit(aReferrer, &referringVisit, aSessionID)) {
|
||||
if (!FindLastVisit(aReferrerURI, &referringVisit, aSessionID)) {
|
||||
// we couldn't find a visit for the referrer, don't set it
|
||||
*aSessionID = GetNewSessionID();
|
||||
}
|
||||
|
@ -4308,7 +4313,7 @@ nsNavHistory::AddVisitChain(nsIURI* aURI, PRTime aTime,
|
|||
}
|
||||
|
||||
// this call will create the visit and create/update the page entry
|
||||
return AddVisit(aURI, visitTime, aReferrer, transitionType,
|
||||
return AddVisit(aURI, visitTime, fromVisitURI, transitionType,
|
||||
aIsRedirect, *aSessionID, aVisitID);
|
||||
}
|
||||
|
||||
|
|
|
@ -55,6 +55,7 @@ XPCSHELL_TESTS = \
|
|||
|
||||
# Simple MochiTests
|
||||
MOCHI_TESTS = mochitest/test_bug_405924.html \
|
||||
mochitest/test_bug_411966.html \
|
||||
$(NULL)
|
||||
|
||||
MOCHI_CONTENT = mochitest/prompt_common.js \
|
||||
|
@ -63,6 +64,7 @@ MOCHI_CONTENT = mochitest/prompt_common.js \
|
|||
ifdef MOZ_MOCHITEST
|
||||
DIRS = \
|
||||
chrome \
|
||||
mochitest/test_bug_411966 \
|
||||
# These tests are disabled for the time being, see bug 416066
|
||||
# browser \
|
||||
$(NULL)
|
||||
|
|
|
@ -0,0 +1,40 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=411966
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 411966</title>
|
||||
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<script type="text/javascript" src="test_bug_411966/redirect.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
</head>
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=411966">
|
||||
Mozilla Bug 411966</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none">
|
||||
<iframe id="iframe"></iframe>
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script class="testbody" type="text/javascript">
|
||||
|
||||
/** Test for Bug 411966 **/
|
||||
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
|
||||
|
||||
ghist.addURI(typedURI, false, true, null);
|
||||
bhist.markPageAsTyped(typedURI);
|
||||
|
||||
var clickedLinkChannel = ios.newChannelFromURI(clickedLinkURI);
|
||||
clickedLinkChannel.QueryInterface(Ci.nsIHttpChannel).referrer = typedURI;
|
||||
var listener = new StreamListener(clickedLinkChannel, checkDB);
|
||||
clickedLinkChannel.notificationCallbacks = listener;
|
||||
clickedLinkChannel.asyncOpen(listener, null);
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Bug 411966</title>
|
||||
</head>
|
||||
</body>
|
||||
Clicked link page!
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,2 @@
|
|||
HTTP 302 Moved Temporarily
|
||||
Location: http://localhost:8888/tests/toolkit/components/places/tests/test_bug_411966/TempRedirectPage.htm
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Bug 411966</title>
|
||||
</head>
|
||||
</body>
|
||||
Permanently redirected!
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Bug 411966</title>
|
||||
</head>
|
||||
</body>
|
||||
Temporarly redirected!
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,2 @@
|
|||
HTTP 301 Moved Permanently
|
||||
Location: http://localhost:8888/tests/toolkit/components/places/tests/test_bug_411966/PermRedirectPage.htm
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Bug 411966</title>
|
||||
</head>
|
||||
</body>
|
||||
Typed in page!
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,59 @@
|
|||
#
|
||||
# ***** BEGIN LICENSE BLOCK *****
|
||||
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public License Version
|
||||
# 1.1 (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
# http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS IS" basis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
# for the specific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# The Original Code is Bug 411966 test code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# Mozilla.org.
|
||||
# Portions created by the Initial Developer are Copyright (C) 2005
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Marco Bonardo <mak77@bonardo.net> (Original Author)
|
||||
#
|
||||
# Alternatively, the contents of this file may be used under the terms of
|
||||
# either of the GNU General Public License Version 2 or later (the "GPL"),
|
||||
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
# in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
# of those above. If you wish to allow use of your version of this file only
|
||||
# under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
# use your version of this file under the terms of the MPL, indicate your
|
||||
# decision by deleting the provisions above and replace them with the notice
|
||||
# and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
# the provisions above, a recipient may use your version of this file under
|
||||
# the terms of any one of the MPL, the GPL or the LGPL.
|
||||
#
|
||||
# ***** END LICENSE BLOCK *****
|
||||
|
||||
DEPTH = ../../../../../..
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
relativesrcdir = toolkit/components/places/tests/test_bug_411966
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
_HTTP_FILES = \
|
||||
redirect.js \
|
||||
TypedPage.htm \
|
||||
ClickedPage.htm \
|
||||
ClickedPage.htm^headers^ \
|
||||
TempRedirectPage.htm \
|
||||
TempRedirectPage.htm^headers^ \
|
||||
PermRedirectPage.htm \
|
||||
$(NULL)
|
||||
|
||||
libs:: $(_HTTP_FILES)
|
||||
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir)
|
|
@ -0,0 +1,191 @@
|
|||
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* vim:set ts=2 sw=2 sts=2 et: */
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
* The contents of this file are subject to the Mozilla Public License Version
|
||||
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||
* the License. You may obtain a copy of the License at
|
||||
* http://www.mozilla.org/MPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
* for the specific language governing rights and limitations under the
|
||||
* License.
|
||||
*
|
||||
* The Original Code is Bug 411966 test code.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Corporation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2008
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
* Marco Bonardo <mak77@bonardo.net> (Original Author)
|
||||
*
|
||||
* Alternatively, the contents of this file may be used under the terms of
|
||||
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
* of those above. If you wish to allow use of your version of this file only
|
||||
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
* use your version of this file under the terms of the MPL, indicate your
|
||||
* decision by deleting the provisions above and replace them with the notice
|
||||
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
* the provisions above, a recipient may use your version of this file under
|
||||
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
|
||||
|
||||
const Ci = Components.interfaces;
|
||||
ok(Ci != null, "Access Ci");
|
||||
const Cc = Components.classes;
|
||||
ok(Cc != null, "Access Cc");
|
||||
|
||||
// Get Services.
|
||||
var histsvc = Cc["@mozilla.org/browser/nav-history-service;1"].
|
||||
getService(Ci.nsINavHistoryService);
|
||||
ok(histsvc != null, "Could not get History Service");
|
||||
var bhist = histsvc.QueryInterface(Ci.nsIBrowserHistory);
|
||||
ok(bhist != null, "Could not get Browser History Service");
|
||||
var ghist = Cc["@mozilla.org/browser/global-history;2"].
|
||||
getService(Ci.nsIGlobalHistory2);
|
||||
ok(ghist != null, "Could not get Global History Service");
|
||||
var ghist3 = ghist.QueryInterface(Ci.nsIGlobalHistory3);
|
||||
ok(ghist3 != null, "Could not get Global History Service");
|
||||
var ios = Cc["@mozilla.org/network/io-service;1"].
|
||||
getService(Components.interfaces.nsIIOService);
|
||||
ok(ios != null, "Could not get IO Service");
|
||||
var dirSvc = Cc["@mozilla.org/file/directory_service;1"].
|
||||
getService(Ci.nsIProperties);
|
||||
ok(dirSvc != null, "Could not get Directory Service");
|
||||
var storage = Cc["@mozilla.org/storage/service;1"].
|
||||
getService(Ci.mozIStorageService);
|
||||
ok(storage != null, "Could not get Storage Service");
|
||||
|
||||
// Get database connection.
|
||||
var database = dirSvc.get('ProfD', Ci.nsIFile);
|
||||
database.append("places.sqlite");
|
||||
var mDBConn = storage.openDatabase(database);
|
||||
ok(mDBConn != null, "Could not get Database Connection");
|
||||
|
||||
function uri(URIString) {
|
||||
return ios.newURI(URIString, null, null);
|
||||
}
|
||||
|
||||
var typedURI = uri("http://localhost:8888/tests/toolkit/components/places/tests/test_bug_411966/TypedPage.htm");
|
||||
var clickedLinkURI = uri("http://localhost:8888/tests/toolkit/components/places/tests/test_bug_411966/ClickedPage.htm");
|
||||
var temporaryRedirectURI = uri("http://localhost:8888/tests/toolkit/components/places/tests/test_bug_411966/TempRedirectPage.htm");
|
||||
var permanentRedirectURI = uri("http://localhost:8888/tests/toolkit/components/places/tests/test_bug_411966/PermRedirectPage.htm");
|
||||
|
||||
// Stream Listener
|
||||
function StreamListener(aChannel, aCallbackFunc) {
|
||||
this.mChannel = aChannel;
|
||||
this.mCallbackFunc = aCallbackFunc;
|
||||
}
|
||||
|
||||
StreamListener.prototype = {
|
||||
mData: "",
|
||||
mChannel: null,
|
||||
|
||||
// nsIStreamListener
|
||||
onStartRequest: function (aRequest, aContext) {
|
||||
this.mData = "";
|
||||
},
|
||||
|
||||
onDataAvailable: function (aRequest, aContext, aStream, aSourceOffset, aLength) {
|
||||
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
|
||||
// We actually don't need received data
|
||||
var scriptableInputStream =
|
||||
Components.classes["@mozilla.org/scriptableinputstream;1"]
|
||||
.createInstance(Components.interfaces.nsIScriptableInputStream);
|
||||
scriptableInputStream.init(aStream);
|
||||
|
||||
this.mData += scriptableInputStream.read(aLength);
|
||||
},
|
||||
|
||||
onStopRequest: function (aRequest, aContext, aStatus) {
|
||||
if (Components.isSuccessCode(aStatus))
|
||||
this.mCallbackFunc(this.mData);
|
||||
else
|
||||
throw("Could not get page.");
|
||||
|
||||
this.mChannel = null;
|
||||
},
|
||||
|
||||
// nsIChannelEventSink
|
||||
onChannelRedirect: function (aOldChannel, aNewChannel, aFlags) {
|
||||
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
|
||||
ghist3.addDocumentRedirect(aOldChannel, aNewChannel, aFlags, true);
|
||||
// If redirecting, store the new channel
|
||||
this.mChannel = aNewChannel;
|
||||
},
|
||||
|
||||
// nsIInterfaceRequestor
|
||||
getInterface: function (aIID) {
|
||||
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
|
||||
try {
|
||||
return this.QueryInterface(aIID);
|
||||
} catch (e) {
|
||||
throw Components.results.NS_NOINTERFACE;
|
||||
}
|
||||
},
|
||||
|
||||
// nsIProgressEventSink (not implementing will cause annoying exceptions)
|
||||
onProgress : function (aRequest, aContext, aProgress, aProgressMax) { },
|
||||
onStatus : function (aRequest, aContext, aStatus, aStatusArg) { },
|
||||
|
||||
// nsIHttpEventSink (not implementing will cause annoying exceptions)
|
||||
onRedirect : function (aOldChannel, aNewChannel) { },
|
||||
|
||||
// we are faking an XPCOM interface, so we need to implement QI
|
||||
QueryInterface : function(aIID) {
|
||||
if (aIID.equals(Components.interfaces.nsISupports) ||
|
||||
aIID.equals(Components.interfaces.nsIInterfaceRequestor) ||
|
||||
aIID.equals(Components.interfaces.nsIChannelEventSink) ||
|
||||
aIID.equals(Components.interfaces.nsIProgressEventSink) ||
|
||||
aIID.equals(Components.interfaces.nsIHttpEventSink) ||
|
||||
aIID.equals(Components.interfaces.nsIStreamListener))
|
||||
return this;
|
||||
|
||||
throw Components.results.NS_NOINTERFACE;
|
||||
}
|
||||
};
|
||||
|
||||
// Check Callback.
|
||||
function checkDB(data){
|
||||
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
|
||||
var referrer = this.mChannel.QueryInterface(Ci.nsIHttpChannel).referrer;
|
||||
ghist.addURI(this.mChannel.URI, true, true, referrer);
|
||||
|
||||
// We have to wait since we use lazy_add, lazy_timer is 3s
|
||||
setTimeout("checkDBOnTimeout()", 4000);
|
||||
}
|
||||
|
||||
function checkDBOnTimeout() {
|
||||
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
|
||||
|
||||
// Get all pages visited from the original typed one
|
||||
var sql = "SELECT url FROM moz_historyvisits " +
|
||||
"JOIN moz_places h ON h.id = place_id " +
|
||||
"WHERE from_visit IN " +
|
||||
"(SELECT v.id FROM moz_historyvisits v " +
|
||||
"JOIN moz_places p ON p.id = v.place_id " +
|
||||
"WHERE p.url = ?1)";
|
||||
var stmt = mDBConn.createStatement(sql);
|
||||
stmt.bindUTF8StringParameter(0, typedURI.spec);
|
||||
|
||||
var empty = true;
|
||||
while (stmt.executeStep()) {
|
||||
empty = false;
|
||||
var visitedURI = stmt.getUTF8String(0);
|
||||
// Check that redirect from_visit is not from the original typed one
|
||||
ok(visitedURI == clickedLinkURI.spec, "Got wrong referrer for " + visitedURI);
|
||||
}
|
||||
// Ensure that we got some result
|
||||
ok(!empty, "empty table");
|
||||
|
||||
SimpleTest.finish();
|
||||
}
|
Загрузка…
Ссылка в новой задаче